diff options
author | Duncan Sands <baldrick@free.fr> | 2010-09-02 08:52:56 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2010-09-02 08:52:56 +0000 |
commit | 7f1982731e5cda60ceb910b6cddc0825e1f7caa6 (patch) | |
tree | e44f2416939a5e7f30fbea1fde93b781fd1abc1c /clang/test/CodeGen | |
parent | 8dda07428a771599136730cc38fb5b2816b40061 (diff) | |
download | bcm5719-llvm-7f1982731e5cda60ceb910b6cddc0825e1f7caa6.tar.gz bcm5719-llvm-7f1982731e5cda60ceb910b6cddc0825e1f7caa6.zip |
Correct this test for the fact that the number of uses is now printed
in a comment.
llvm-svn: 112813
Diffstat (limited to 'clang/test/CodeGen')
-rw-r--r-- | clang/test/CodeGen/struct-passing.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/clang/test/CodeGen/struct-passing.c b/clang/test/CodeGen/struct-passing.c index 409d14e22d3..ce1fee41a24 100644 --- a/clang/test/CodeGen/struct-passing.c +++ b/clang/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; |