diff options
author | John McCall <rjmccall@apple.com> | 2010-02-24 08:14:27 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-02-24 08:14:27 +0000 |
commit | 8bf8ac0775061ac395c81a559fde024b5b09e128 (patch) | |
tree | e02c76289ad19a786b980b5d0df79b47442944a8 /clang/test/CodeGen/functions.c | |
parent | 739517da07252014f780414592d2922c34e30348 (diff) | |
download | bcm5719-llvm-8bf8ac0775061ac395c81a559fde024b5b09e128.tar.gz bcm5719-llvm-8bf8ac0775061ac395c81a559fde024b5b09e128.zip |
Make this test portable to ABIs that use sret.
llvm-svn: 97035
Diffstat (limited to 'clang/test/CodeGen/functions.c')
-rw-r--r-- | clang/test/CodeGen/functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGen/functions.c b/clang/test/CodeGen/functions.c index 1e79f015014..5629ef582a6 100644 --- a/clang/test/CodeGen/functions.c +++ b/clang/test/CodeGen/functions.c @@ -30,7 +30,7 @@ void f2(void) { // CHECK: define void @f1() void f1() {} -// CHECK: define {{.*}} @f3() +// CHECK: define {{.*}} @f3{{\(\)|\(.*sret.*\)}} struct foo { int X, Y, Z; } f3() { while (1) {} } |