[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / CodeGen / arm-long-calls.c
blob78aee77c8f6d80e65138f0ddf9ba0a2b76033ff5
1 // RUN: %clang_cc1 -triple thumbv7-apple-ios5 -target-feature +long-calls -emit-llvm -o - %s | FileCheck -check-prefix=LONGCALL %s
2 // RUN: %clang_cc1 -triple thumbv7-apple-ios5 -emit-llvm -o - %s | FileCheck -check-prefix=NOLONGCALL %s
4 // LONGCALL: attributes #0 = { {{.*}} "target-features"="+armv7-a,+long-calls,+thumb-mode"
5 // NOLONGCALL-NOT: attributes #0 = { {{.*}} "target-features"="+armv7-a,+long-calls,+thumb-mode"
7 int foo1(int a) { return a; }