diff options
author | dim <dim@FreeBSD.org> | 2011-05-02 19:39:53 +0000 |
---|---|---|
committer | dim <dim@FreeBSD.org> | 2011-05-02 19:39:53 +0000 |
commit | 110eaaceddcec790f7e6a5e3bf1261c9aa1e73ab (patch) | |
tree | 64a10f4c4154739d4a8191d7e1b52ce497f4ebd6 /test/CodeGen/regparm-flag.c | |
parent | a0fb00f9837bd0d2e5948f16f6a6b82a7a628f51 (diff) | |
download | FreeBSD-src-110eaaceddcec790f7e6a5e3bf1261c9aa1e73ab.zip FreeBSD-src-110eaaceddcec790f7e6a5e3bf1261c9aa1e73ab.tar.gz |
Vendor import of clang trunk r130700:
http://llvm.org/svn/llvm-project/cfe/trunk@130700
Diffstat (limited to 'test/CodeGen/regparm-flag.c')
-rw-r--r-- | test/CodeGen/regparm-flag.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/CodeGen/regparm-flag.c b/test/CodeGen/regparm-flag.c index f37239e..8ecf539 100644 --- a/test/CodeGen/regparm-flag.c +++ b/test/CodeGen/regparm-flag.c @@ -4,12 +4,17 @@ void f1(int a, int b, int c, int d, int e, int f, int g, int h); +void f2(int a, int b) __attribute((regparm(0))); + 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: call void @f2(i32 1, i32 2) + f2(1, 2); } // CHECK: declare void @f1(i32 inreg, i32 inreg, i32 inreg, i32 inreg, // CHECK: i32, i32, i32, i32) +// CHECK: declare void @f2(i32, i32) |