[llvm-commits] [llvm] r126198 - /llvm/trunk/test/CodeGen/X86/codegen-prepare-extload.ll

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


Author: chapuni
Date: Tue Feb 22 01:19:28 2011
New Revision: 126198

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

Modified:
    llvm/trunk/test/CodeGen/X86/codegen-prepare-extload.ll

Modified: llvm/trunk/test/CodeGen/X86/codegen-prepare-extload.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/codegen-prepare-extload.ll?rev=126198&r1=126197&r2=126198&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/codegen-prepare-extload.ll (original)
+++ llvm/trunk/test/CodeGen/X86/codegen-prepare-extload.ll Tue Feb 22 01:19:28 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-win64 | FileCheck %s
 ; rdar://7304838
 
 ; CodeGenPrepare should move the zext into the block with the load
 ; so that SelectionDAG can select it with the load.
 
-; CHECK: movzbl (%rdi), %eax
+; CHECK: movzbl ({{%rdi|%rcx}}), %eax
 
 define void @foo(i8* %p, i32* %q) {
 entry:





More information about the llvm-commits mailing list