brintos

brintos / llvm-project-archived public Read only

0
0
Text · 757 B · 282c479 Raw
18 lines · plain
1! REQUIRES: x86-registered-target2! RUN: %flang_fc1 -emit-fir -triple x86_64-unknown-linux-gnu -target-cpu x86-64 %s -o - | FileCheck %s --check-prefixes=ALL,CPU3! RUN: %flang_fc1 -emit-fir -triple x86_64-unknown-linux-gnu -target-feature +sse %s -o - | FileCheck %s --check-prefixes=ALL,FEATURE4! RUN: %flang_fc1 -emit-fir -triple x86_64-unknown-linux-gnu -target-cpu x86-64 -target-feature +sse %s -o - | FileCheck %s --check-prefixes=ALL,BOTH5 6! ALL: module attributes {7 8! CPU-SAME:     fir.target_cpu = "x86-64"9 10! FEATURE-SAME: fir.target_features = #llvm.target_features<[11! FEATURE-SAME: "+sse"12! FEATURE-SAME: ]>13 14! BOTH-SAME: fir.target_cpu = "x86-64"15! BOTH-SAME: fir.target_features = #llvm.target_features<[16! BOTH-SAME: "+sse"17! BOTH-SAME: ]>18