[llvm-commits] [llvm] r112947 - in /llvm/trunk/test/CodeGen/X86: 2009-03-13-PHIElimBug.ll 2009-03-16-PHIElimInLPad.ll dyn-stackalloc.ll

NAKAMURA Takumi geek4civic at gmail.com
Thu Sep 2 20:24:08 PDT 2010


Author: chapuni
Date: Thu Sep  2 22:24:08 2010
New Revision: 112947

URL: http://llvm.org/viewvc/llvm-project?rev=112947&view=rev
Log:
test/CodeGen/X86: Add explicit -mtriple=(i686|x86_64)-linux for Win32 host.

Modified:
    llvm/trunk/test/CodeGen/X86/2009-03-13-PHIElimBug.ll
    llvm/trunk/test/CodeGen/X86/2009-03-16-PHIElimInLPad.ll
    llvm/trunk/test/CodeGen/X86/dyn-stackalloc.ll

Modified: llvm/trunk/test/CodeGen/X86/2009-03-13-PHIElimBug.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/2009-03-13-PHIElimBug.ll?rev=112947&r1=112946&r2=112947&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/2009-03-13-PHIElimBug.ll (original)
+++ llvm/trunk/test/CodeGen/X86/2009-03-13-PHIElimBug.ll Thu Sep  2 22:24:08 2010
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=x86 | FileCheck %s
+; RUN: llc < %s -mtriple=i686-linux | FileCheck %s
 ; Check the register copy comes after the call to f and before the call to g
 ; PR3784
 

Modified: llvm/trunk/test/CodeGen/X86/2009-03-16-PHIElimInLPad.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/2009-03-16-PHIElimInLPad.ll?rev=112947&r1=112946&r2=112947&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/2009-03-16-PHIElimInLPad.ll (original)
+++ llvm/trunk/test/CodeGen/X86/2009-03-16-PHIElimInLPad.ll Thu Sep  2 22:24:08 2010
@@ -1,4 +1,4 @@
-; RUN: llc < %s -march=x86 -asm-verbose | FileCheck %s
+; RUN: llc < %s -mtriple=i686-linux -asm-verbose | FileCheck %s
 ; Check that register copies in the landing pad come after the EH_LABEL
 
 declare i32 @f()

Modified: llvm/trunk/test/CodeGen/X86/dyn-stackalloc.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/dyn-stackalloc.ll?rev=112947&r1=112946&r2=112947&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/dyn-stackalloc.ll (original)
+++ llvm/trunk/test/CodeGen/X86/dyn-stackalloc.ll Thu Sep  2 22:24:08 2010
@@ -1,6 +1,6 @@
-; RUN: llc < %s -march=x86 | not egrep {\\\$4294967289|-7}
-; RUN: llc < %s -march=x86 | egrep {\\\$4294967280|-16}
-; RUN: llc < %s -march=x86-64 | grep {\\-16}
+; RUN: llc < %s -mtriple=i686-linux | not egrep {\\\$4294967289|-7}
+; RUN: llc < %s -mtriple=i686-linux | egrep {\\\$4294967280|-16}
+; RUN: llc < %s -mtriple=x86_64-linux | grep {\\-16}
 
 define void @t() nounwind {
 A:





More information about the llvm-commits mailing list