diff options
Diffstat (limited to 'test/CodeGen/mrtd.c')
-rw-r--r-- | test/CodeGen/mrtd.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/test/CodeGen/mrtd.c b/test/CodeGen/mrtd.c index a40a59a..8fa7cf0 100644 --- a/test/CodeGen/mrtd.c +++ b/test/CodeGen/mrtd.c @@ -1,4 +1,4 @@ -// RUN: %clang_cc1 -mrtd -triple i386-unknown-freebsd9.0 -emit-llvm -o - %s | FileCheck %s +// RUN: %clang_cc1 -mrtd -triple i386-unknown-unknown -std=c89 -emit-llvm -o - %s | FileCheck %s void baz(int arg); @@ -14,4 +14,13 @@ void foo(int arg) { // CHECK: declare x86_stdcallcc void @baz(i32) +void qux(int arg, ...) { } +// CHECK: define void @qux(i32 %arg, ...) + +void quux(int a1, int a2, int a3) { + qux(a1, a2, a3); +} +// CHECK-LABEL: define x86_stdcallcc void @quux +// CHECK: call void (i32, ...)* @qux + // CHECK: attributes [[NUW]] = { nounwind{{.*}} } |