[llvm-commits] [llvm] r79348 - /llvm/trunk/test/CodeGen/X86/omit-label.ll

Dan Gohman gohman at apple.com
Tue Aug 18 10:19:46 PDT 2009


Author: djg
Date: Tue Aug 18 12:19:46 2009
New Revision: 79348

URL: http://llvm.org/viewvc/llvm-project?rev=79348&view=rev
Log:
Make this test less sensitive to assembler differences.

Modified:
    llvm/trunk/test/CodeGen/X86/omit-label.ll

Modified: llvm/trunk/test/CodeGen/X86/omit-label.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/omit-label.ll?rev=79348&r1=79347&r2=79348&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/X86/omit-label.ll (original)
+++ llvm/trunk/test/CodeGen/X86/omit-label.ll Tue Aug 18 12:19:46 2009
@@ -5,7 +5,7 @@
 ; Don't omit these labels' definitions.
 
 ; CHECK: bux:
-; CHECK: .LBB1_1:
+; CHECK: LBB1_1:
 
 define void @bux(i32 %p_53) nounwind optsize {
 entry:
@@ -28,9 +28,9 @@
 
 ; Don't omit this label in the assembly output.
 ; CHECK: int321:
-; CHECK:    jne .LBB2_1
-; CHECK:    jle .LBB2_1
-; CHECK: .LBB2_1:
+; CHECK: LBB2_1
+; CHECK: LBB2_1
+; CHECK: LBB2_1:
 
 define void @int321(i8 signext %p_103, i32 %uint8p_104) nounwind readnone {
 entry:





More information about the llvm-commits mailing list