[llvm-commits] [llvm] r134447 - /llvm/trunk/test/CodeGen/X86/lsr-nonaffine.ll
Dan Gohman
gohman at apple.com
Tue Jul 5 15:09:19 PDT 2011
Author: djg
Date: Tue Jul 5 17:09:19 2011
New Revision: 134447
URL: http://llvm.org/viewvc/llvm-project?rev=134447&view=rev
Log:
Revert r134366 and add an explicit triple to make this test host-independent.
Modified:
llvm/trunk/test/CodeGen/X86/lsr-nonaffine.ll
Modified: llvm/trunk/test/CodeGen/X86/lsr-nonaffine.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/lsr-nonaffine.ll?rev=134447&r1=134446&r2=134447&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/lsr-nonaffine.ll (original)
+++ llvm/trunk/test/CodeGen/X86/lsr-nonaffine.ll Tue Jul 5 17:09:19 2011
@@ -1,4 +1,4 @@
-; RUN: llc -asm-verbose=false -march=x86-64 -o - < %s | FileCheck %s
+; RUN: llc -asm-verbose=false -march=x86-64 -mtriple=x86_64-apple-darwin -o - < %s | FileCheck %s
; LSR should leave non-affine expressions alone because it currently
; doesn't know how to do anything with them, and when it tries, it
@@ -7,9 +7,9 @@
; CHECK: xorl %eax, %eax
; CHECK-NEXT: align
; CHECK-NEXT: BB0_1:
-; CHECK-NEXT: movq %rax, (%{{rdx|r8}})
-; CHECK-NEXT: addq %{{rsi|rdx}}, %rax
-; CHECK-NEXT: cmpq %{{rdi|rcx}}, %rax
+; CHECK-NEXT: movq %rax, (%rdx)
+; CHECK-NEXT: addq %rsi, %rax
+; CHECK-NEXT: cmpq %rdi, %rax
; CHECK-NEXT: jl
; CHECK-NEXT: imulq %rax, %rax
; CHECK-NEXT: ret
More information about the llvm-commits
mailing list