[llvm-commits] [llvm] r151813 - in /llvm/trunk/test/CodeGen: ARM/log2_not_readnone.ll X86/log2_not_readnone.ll

Jim Grosbach grosbach at apple.com
Thu Mar 1 09:30:32 PST 2012


Author: grosbach
Date: Thu Mar  1 11:30:32 2012
New Revision: 151813

URL: http://llvm.org/viewvc/llvm-project?rev=151813&view=rev
Log:
Add missing triple for tests.

Make darwin bots happier.

Modified:
    llvm/trunk/test/CodeGen/ARM/log2_not_readnone.ll
    llvm/trunk/test/CodeGen/X86/log2_not_readnone.ll

Modified: llvm/trunk/test/CodeGen/ARM/log2_not_readnone.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/ARM/log2_not_readnone.ll?rev=151813&r1=151812&r2=151813&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/ARM/log2_not_readnone.ll (original)
+++ llvm/trunk/test/CodeGen/ARM/log2_not_readnone.ll Thu Mar  1 11:30:32 2012
@@ -1,4 +1,4 @@
-; RUN: llc -march arm %s -o - | FileCheck %s
+; RUN: llc -mtriple=arm-linux-gnueabi %s -o - | FileCheck %s
 
 ; Log2 and exp2 are string-matched to intrinsics. If they are not declared
 ; readnone, they can't be changed to intrinsics (because they can change errno).

Modified: llvm/trunk/test/CodeGen/X86/log2_not_readnone.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/log2_not_readnone.ll?rev=151813&r1=151812&r2=151813&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/X86/log2_not_readnone.ll (original)
+++ llvm/trunk/test/CodeGen/X86/log2_not_readnone.ll Thu Mar  1 11:30:32 2012
@@ -1,4 +1,4 @@
-; RUN: llc -march x86 %s -o - | FileCheck %s
+; RUN: llc -mtriple=i386-linux-gnueabi %s -o - | FileCheck %s
 
 ; Log2 and exp2 are string-matched to intrinsics. If they are not declared
 ; readnone, they can't be changed to intrinsics (because they can change errno).





More information about the llvm-commits mailing list