[cfe-commits] r112813 - /cfe/trunk/test/CodeGen/struct-passing.c
Duncan Sands
baldrick at free.fr
Thu Sep 2 01:52:57 PDT 2010
Author: baldrick
Date: Thu Sep 2 03:52:56 2010
New Revision: 112813
URL: http://llvm.org/viewvc/llvm-project?rev=112813&view=rev
Log:
Correct this test for the fact that the number of uses is now printed
in a comment.
Modified:
cfe/trunk/test/CodeGen/struct-passing.c
Modified: cfe/trunk/test/CodeGen/struct-passing.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/struct-passing.c?rev=112813&r1=112812&r2=112813&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/struct-passing.c (original)
+++ cfe/trunk/test/CodeGen/struct-passing.c Thu Sep 2 03:52:56 2010
@@ -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;
More information about the cfe-commits
mailing list