[llvm-commits] [llvm] r126206 - /llvm/trunk/test/CodeGen/X86/lsr-overflow.ll

NAKAMURA Takumi geek4civic at gmail.com
Mon Feb 21 23:20:35 PST 2011


Author: chapuni
Date: Tue Feb 22 01:20:35 2011
New Revision: 126206

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

Modified:
    llvm/trunk/test/CodeGen/X86/lsr-overflow.ll

Modified: llvm/trunk/test/CodeGen/X86/lsr-overflow.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/lsr-overflow.ll?rev=126206&r1=126205&r2=126206&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/lsr-overflow.ll (original)
+++ llvm/trunk/test/CodeGen/X86/lsr-overflow.ll Tue Feb 22 01:20:35 2011
@@ -1,10 +1,11 @@
-; RUN: llc < %s -march=x86-64 | FileCheck %s
+; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s
+; RUN: llc < %s -mtriple=x86_64-win32 | FileCheck %s
 
 ; The comparison uses the pre-inc value, which could lead LSR to
 ; try to compute -INT64_MIN.
 
 ; CHECK: movabsq $-9223372036854775808, %rax
-; CHECK: cmpq  %rax, %rbx
+; CHECK: cmpq  %rax,
 ; CHECK: sete  %al
 
 declare i64 @bar()





More information about the llvm-commits mailing list