]> granicus.if.org Git - llvm/commitdiff
Fix PR5001 PR5002.
authorTanya Lattner <tonic@nondot.org>
Fri, 18 Sep 2009 04:26:28 +0000 (04:26 +0000)
committerTanya Lattner <tonic@nondot.org>
Fri, 18 Sep 2009 04:26:28 +0000 (04:26 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_26@82191 91177308-0d34-0410-b5e6-96231b3b80d8

test/CodeGen/X86/cmov-zext.ll
test/CodeGen/X86/combiner-aa-1.ll
test/Transforms/MemCpyOpt/align.ll

index 8df228a00aac2162c0bdd313b8e83298c0d50f80..a6422c45c037da2330f3e89815b8d484e7040e4c 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=x86-64 | FileCheck %s
+; RUN: llvm-as < %s | llc -march=x86-64 | FileCheck %s
 
 ; x86's 32-bit cmov doesn't clobber the high 32 bits of the destination
 ; if the condition is false. An explicit zero-extend (movl) is needed
index 58a7129b6005ff3875eab4eb8067b96f39741453..c768f6000ad8509e1d452307ae847bec2db4e399 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: llc < %s --combiner-alias-analysis --combiner-global-alias-analysis
+; RUN: llvm-as < %s | llc --combiner-alias-analysis --combiner-global-alias-analysis
 ; PR4880
 
 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"
index a9d03378521f871b2b6a423c254786e2aef91e29..312ffad8aa5691f82599586fee4d93eb3831b438 100644 (file)
@@ -1,4 +1,4 @@
-; RUN: opt < %s -S -memcpyopt | FileCheck %s
+; RUN: llvm-as < %s | opt -memcpyopt | llvm-dis | FileCheck %s
 
 ; The resulting memset is only 4-byte aligned, despite containing
 ; a 16-byte alignmed store in the middle.