r200880 - Try to fix ppc bot failure.

Manman Ren manman.ren at gmail.com
Wed Feb 5 13:40:10 PST 2014


Author: mren
Date: Wed Feb  5 15:40:10 2014
New Revision: 200880

URL: http://llvm.org/viewvc/llvm-project?rev=200880&view=rev
Log:
Try to fix ppc bot failure.

Modified:
    cfe/trunk/test/CodeGen/instr-attribute.c

Modified: cfe/trunk/test/CodeGen/instr-attribute.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/instr-attribute.c?rev=200880&r1=200879&r2=200880&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/instr-attribute.c (original)
+++ cfe/trunk/test/CodeGen/instr-attribute.c Wed Feb  5 15:40:10 2014
@@ -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--;





More information about the cfe-commits mailing list