From 39fcc9a984e2820e4ea0fa2ac4abd17d9f3a31df Mon Sep 17 00:00:00 2001 From: dim Date: Sun, 20 Feb 2011 13:06:31 +0000 Subject: Vendor import of clang trunk r126079: http://llvm.org/svn/llvm-project/cfe/trunk@126079 --- test/CodeGen/regparm-flag.c | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test/CodeGen/regparm-flag.c (limited to 'test/CodeGen/regparm-flag.c') diff --git a/test/CodeGen/regparm-flag.c b/test/CodeGen/regparm-flag.c new file mode 100644 index 0000000..f37239e --- /dev/null +++ b/test/CodeGen/regparm-flag.c @@ -0,0 +1,15 @@ +// RUN: %clang_cc1 -triple i386-unknown-unknown -mregparm 4 %s -emit-llvm -o %t +// RUN: FileCheck < %t %s + +void f1(int a, int b, int c, int d, + int e, int f, int g, int h); + +void f0() { +// CHECK: call void @f1(i32 inreg 1, i32 inreg 2, i32 inreg 3, i32 inreg 4, +// CHECK: i32 5, i32 6, i32 7, i32 8) + f1(1, 2, 3, 4, 5, 6, 7, 8); +} + +// CHECK: declare void @f1(i32 inreg, i32 inreg, i32 inreg, i32 inreg, +// CHECK: i32, i32, i32, i32) + -- cgit v1.1