aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2010-09-02 08:52:56 +0000
committerDuncan Sands <baldrick@free.fr>2010-09-02 08:52:56 +0000
commitcd4c34d2a078b78ca31fd3bc5cbb210123dce89d (patch)
tree5924091f87e21affb1fde20490aeb166baa74bd8
parentd0b4e7c8723c031cd8d743b2ff63943a3d0563ff (diff)
Correct this test for the fact that the number of uses is now printed
in a comment. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@112813 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/struct-passing.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/CodeGen/struct-passing.c b/test/CodeGen/struct-passing.c
index 409d14e22d..ce1fee41a2 100644
--- a/test/CodeGen/struct-passing.c
+++ b/test/CodeGen/struct-passing.c
@@ -1,10 +1,10 @@
// RUN: %clang_cc1 -triple i386-pc-linux-gnu -emit-llvm -o %t %s
-// RUN: grep 'declare i32 @f0() readnone$' %t
-// RUN: grep 'declare i32 @f1() readonly$' %t
-// RUN: grep 'declare void @f2(.* sret)$' %t
-// RUN: grep 'declare void @f3(.* sret)$' %t
-// RUN: grep 'declare void @f4(.* byval)$' %t
-// RUN: grep 'declare void @f5(.* byval)$' %t
+// RUN: grep 'declare i32 @f0() readnone ;' %t
+// RUN: grep 'declare i32 @f1() readonly ;' %t
+// RUN: grep 'declare void @f2(.* sret) ;' %t
+// RUN: grep 'declare void @f3(.* sret) ;' %t
+// RUN: grep 'declare void @f4(.* byval) ;' %t
+// RUN: grep 'declare void @f5(.* byval) ;' %t
// PR3835
typedef int T0;