Skip to content

Commit 2b7025e

Browse files
committed
Fix PR5001 PR5002.
llvm-svn: 82191
1 parent 49a9f7f commit 2b7025e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

llvm/test/CodeGen/X86/cmov-zext.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llc < %s -march=x86-64 | FileCheck %s
1+
; RUN: llvm-as < %s | llc -march=x86-64 | FileCheck %s
22

33
; x86's 32-bit cmov doesn't clobber the high 32 bits of the destination
44
; if the condition is false. An explicit zero-extend (movl) is needed

llvm/test/CodeGen/X86/combiner-aa-1.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: llc < %s --combiner-alias-analysis --combiner-global-alias-analysis
1+
; RUN: llvm-as < %s | llc --combiner-alias-analysis --combiner-global-alias-analysis
22
; PR4880
33

44
target datalayout = "e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:32:64-f32:32:32-f64:32:64-v64:64:64-v128:128:128-a0:0:64-f80:32:32"

llvm/test/Transforms/MemCpyOpt/align.ll

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
; RUN: opt < %s -S -memcpyopt | FileCheck %s
1+
; RUN: llvm-as < %s | opt -memcpyopt | llvm-dis | FileCheck %s
22

33
; The resulting memset is only 4-byte aligned, despite containing
44
; a 16-byte alignmed store in the middle.

0 commit comments

Comments
 (0)