[llvm-commits] [llvm] r126200 - /llvm/trunk/test/CodeGen/X86/ctpop-combine.ll

NAKAMURA Takumi geek4civic at gmail.com
Mon Feb 21 23:19:46 PST 2011


Author: chapuni
Date: Tue Feb 22 01:19:46 2011
New Revision: 126200

URL: http://llvm.org/viewvc/llvm-project?rev=126200&view=rev
Log:
Relax expressions and add explicit triplets -linux and -win32.

Modified:
    llvm/trunk/test/CodeGen/X86/ctpop-combine.ll

Modified: llvm/trunk/test/CodeGen/X86/ctpop-combine.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/ctpop-combine.ll?rev=126200&r1=126199&r2=126200&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/ctpop-combine.ll (original)
+++ llvm/trunk/test/CodeGen/X86/ctpop-combine.ll Tue Feb 22 01:19:46 2011
@@ -9,7 +9,7 @@
   %conv = zext i1 %cmp to i32
   ret i32 %conv
 ; CHECK: test1:
-; CHECK: leaq -1(%rdi)
+; CHECK: leaq -1([[A0:%rdi|%rcx]])
 ; CHECK-NEXT: testq
 ; CHECK-NEXT: setne
 ; CHECK: ret
@@ -22,7 +22,7 @@
   %conv = zext i1 %cmp to i32
   ret i32 %conv
 ; CHECK: test2:
-; CHECK: leaq -1(%rdi)
+; CHECK: leaq -1([[A0]])
 ; CHECK-NEXT: testq
 ; CHECK-NEXT: sete
 ; CHECK: ret





More information about the llvm-commits mailing list