]> granicus.if.org Git - clang/commitdiff
Try to fix ppc bot failure.
authorManman Ren <manman.ren@gmail.com>
Wed, 5 Feb 2014 21:40:10 +0000 (21:40 +0000)
committerManman Ren <manman.ren@gmail.com>
Wed, 5 Feb 2014 21:40:10 +0000 (21:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@200880 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/instr-attribute.c

index 917a0276434f5b41c6cc5f4f79a14e3b96ee345c..0005c5a62e892278c7cc5e62aa17e0e9fc445692 100644 (file)
@@ -4,25 +4,25 @@
 
 extern int atoi(const char *);
 
-// CHECK: hot_100_percent(i32 %i) [[HOT:#[0-9]+]]
+// CHECK: hot_100_percent(i32{{.*}}%i) [[HOT:#[0-9]+]]
 void hot_100_percent(int i) {
   while (i > 0)
     i--;
 }
 
-// CHECK: hot_40_percent(i32 %i) [[HOT]]
+// CHECK: hot_40_percent(i32{{.*}}%i) [[HOT]]
 void hot_40_percent(int i) {
   while (i > 0)
     i--;
 }
 
-// CHECK: normal_func(i32 %i) [[NORMAL:#[0-9]+]]
+// CHECK: normal_func(i32{{.*}}%i) [[NORMAL:#[0-9]+]]
 void normal_func(int i) {
   while (i > 0)
     i--;
 }
 
-// CHECK: cold_func(i32 %i) [[COLD:#[0-9]+]]
+// CHECK: cold_func(i32{{.*}}%i) [[COLD:#[0-9]+]]
 void cold_func(int i) {
   while (i > 0)
     i--;