diff options
Diffstat (limited to 'test/CodeGen/mrtd.c')
-rw-r--r-- | test/CodeGen/mrtd.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/CodeGen/mrtd.c b/test/CodeGen/mrtd.c new file mode 100644 index 0000000..2cc71bb --- /dev/null +++ b/test/CodeGen/mrtd.c @@ -0,0 +1,15 @@ +// RUN: %clang_cc1 -mrtd -triple i386-unknown-freebsd9.0 -emit-llvm -o - %s | FileCheck %s + +void baz(int arg); + +// CHECK: define x86_stdcallcc void @foo(i32 %arg) nounwind +void foo(int arg) { +// CHECK: call x86_stdcallcc i32 (...)* @bar(i32 + bar(arg); +// CHECK: call x86_stdcallcc void @baz(i32 + baz(arg); +} + +// CHECK: declare x86_stdcallcc i32 @bar(...) + +// CHECK: declare x86_stdcallcc void @baz(i32) |