From: Andrew Trick Date: Tue, 26 Jun 2012 21:15:49 +0000 (+0000) Subject: unit test tweak X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7bbf9d14cc582ee5e4047ff2dfe38afc2b3af84a;p=clang unit test tweak git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159225 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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)