r185650 - Looks like {{.*}} doesn't match the empty string. Fix test.

Rafael Espindola rafael.espindola at gmail.com
Thu Jul 4 08:29:21 PDT 2013


Author: rafael
Date: Thu Jul  4 10:29:20 2013
New Revision: 185650

URL: http://llvm.org/viewvc/llvm-project?rev=185650&view=rev
Log:
Looks like {{.*}} doesn't match the empty string. Fix test.

Modified:
    cfe/trunk/test/CodeGen/2004-11-27-StaticFunctionRedeclare.c

Modified: cfe/trunk/test/CodeGen/2004-11-27-StaticFunctionRedeclare.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/2004-11-27-StaticFunctionRedeclare.c?rev=185650&r1=185649&r2=185650&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/2004-11-27-StaticFunctionRedeclare.c (original)
+++ cfe/trunk/test/CodeGen/2004-11-27-StaticFunctionRedeclare.c Thu Jul  4 10:29:20 2013
@@ -8,7 +8,7 @@
 
 // CHECK: define void @bar(
 // CHECK: call {{.*}} @func
-// CHECK: define internal {{.*}} i32 @func(
+// CHECK: define internal {{.*}}i32 @func(
 static int func();
 void bar() {
   int func();





More information about the cfe-commits mailing list