[cfe-commits] r159225 - /cfe/trunk/test/CodeGen/branch-target-layout.c

Andrew Trick atrick at apple.com
Tue Jun 26 14:15:49 PDT 2012


Author: atrick
Date: Tue Jun 26 16:15:49 2012
New Revision: 159225

URL: http://llvm.org/viewvc/llvm-project?rev=159225&view=rev
Log:
unit test tweak

Modified:
    cfe/trunk/test/CodeGen/branch-target-layout.c

Modified: cfe/trunk/test/CodeGen/branch-target-layout.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/branch-target-layout.c?rev=159225&r1=159224&r2=159225&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/branch-target-layout.c (original)
+++ cfe/trunk/test/CodeGen/branch-target-layout.c Tue Jun 26 16:15:49 2012
@@ -13,10 +13,10 @@
 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 @@
   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)





More information about the cfe-commits mailing list