Try to fix ppc bot failure.

llvm-svn: 200880
This commit is contained in:
Manman Ren 2014-02-05 21:40:10 +00:00
parent 9b55aa4e8f
commit 215893317b
1 changed files with 4 additions and 4 deletions

View 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--;