diff options
-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) |