diff options
Diffstat (limited to 'test/Profile/func-entry.c')
-rw-r--r-- | test/Profile/func-entry.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Profile/func-entry.c b/test/Profile/func-entry.c index 32c20a2..1ecae60 100644 --- a/test/Profile/func-entry.c +++ b/test/Profile/func-entry.c @@ -5,10 +5,10 @@ void foo(void); -// CHECK: @foo() #0 !prof [[FOO:![0-9]+]] +// CHECK: @foo() #{{[0-9]}} !prof [[FOO:![0-9]+]] void foo() { return; } -// CHECK: @main() #1 !prof [[MAIN:![0-9]+]] +// CHECK: @main() #{{[0-9]}} !prof [[MAIN:![0-9]+]] int main() { int i; for (i = 0; i < 10000; i++) foo(); |