diff options
author | Andrew Trick <atrick@apple.com> | 2012-06-26 21:15:49 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2012-06-26 21:15:49 +0000 |
commit | 7bbf9d14cc582ee5e4047ff2dfe38afc2b3af84a (patch) | |
tree | cd098be44a08b23f75ff8a6eeb49ecc56cd71cf1 | |
parent | 4622fe85ab214d54297f978ee2cc31c021051e69 (diff) |
unit test tweak
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159225 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/CodeGen/branch-target-layout.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/CodeGen/branch-target-layout.c b/test/CodeGen/branch-target-layout.c index b93a0c7a4b..a6475d7ef1 100644 --- a/test/CodeGen/branch-target-layout.c +++ b/test/CodeGen/branch-target-layout.c @@ -13,10 +13,10 @@ void calla(); void callb(); void callc(); -// CHECK: @test -// CHECK: @calla() -// CHECK: @callb() -// CHECK: @callc() +// CHECK: @test1 +// CHECK: @calla +// CHECK: @callb +// CHECK: @callc // CHECK: ret void void test1(int a) { if (a) @@ -26,10 +26,10 @@ void test1(int a) { callc(); } -// CHECK: @test -// CHECK: @callb() -// CHECK: @calla() -// CHECK: @callc() +// CHECK: @test2 +// CHECK: @callb +// CHECK: @calla +// CHECK: @callc // CHECK: ret void void test2(int a) { if (!a) |