diff options
Diffstat (limited to 'test/CodeGen/arm-long-calls.c')
-rw-r--r-- | test/CodeGen/arm-long-calls.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/CodeGen/arm-long-calls.c b/test/CodeGen/arm-long-calls.c new file mode 100644 index 000000000000..fdd7babe9fe6 --- /dev/null +++ b/test/CodeGen/arm-long-calls.c @@ -0,0 +1,7 @@ +// RUN: %clang_cc1 -triple thumbv7-apple-ios5 -target-feature +long-calls -emit-llvm -o - %s | FileCheck -check-prefix=LONGCALL %s +// RUN: %clang_cc1 -triple thumbv7-apple-ios5 -emit-llvm -o - %s | FileCheck -check-prefix=NOLONGCALL %s + +// LONGCALL: attributes #0 = { {{.*}} "target-features"="+long-calls" +// NOLONGCALL-NOT: attributes #0 = { {{.*}} "target-features"="+long-calls" + +int foo1(int a) { return a; } |