You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
782 B
17 lines
782 B
// RUN: %clang_cc1 -triple x86_64-linux-gnu -target-cpu x86-64 -emit-llvm %s -o - | FileCheck %s -check-prefix=CHECK -check-prefix=HARD
|
|
// RUN: %clang_cc1 -msoft-float -triple x86_64-linux-gnu -target-cpu x86-64 -emit-llvm %s -o - | FileCheck %s -check-prefix=CHECK -check-prefix=SOFT
|
|
|
|
int __attribute__((target("x87"))) foo(int a) { return 4; }
|
|
int __attribute__((target("no-x87"))) bar(int a) { return 4; }
|
|
|
|
// CHECK: foo{{.*}} #0
|
|
// CHECK: bar{{.*}} #1
|
|
|
|
// CHECK: #0 = {{.*}}"target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,+x87"
|
|
// HARD: "use-soft-float"="false"
|
|
// SOFT: "use-soft-float"="true"
|
|
|
|
// CHECK: #1 = {{.*}}"target-cpu"="x86-64" "target-features"="+cx8,+fxsr,+mmx,+sse,+sse2,-x87"
|
|
// HARD: "use-soft-float"="false"
|
|
// SOFT: "use-soft-float"="true"
|