From: Chris Lattner Date: Wed, 20 Jul 2005 03:56:48 +0000 (+0000) Subject: set the target triple so that we don't fail due to X86 abi issues X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=837451b168a434a0511fd8c88f5e6466318d2562;p=oota-llvm.git set the target triple so that we don't fail due to X86 abi issues git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22479 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/CodeGen/X86/commute-two-addr.ll b/test/CodeGen/X86/commute-two-addr.ll index 5f6baf4402d..ac1aa60319e 100644 --- a/test/CodeGen/X86/commute-two-addr.ll +++ b/test/CodeGen/X86/commute-two-addr.ll @@ -4,6 +4,9 @@ ; Make sure there are only 3 mov's for each testcase ; RUN: llvm-as < %s | llc -march=x86 -x86-asm-syntax=intel | grep 'mov ' | wc -l | grep 6 + +target triple = "i686-pc-linux-gnu" + %G = external global int declare void %ext(int)