[llvm-commits] [llvm] r46496 - in /llvm/trunk/test/CodeGen: PowerPC/2008-01-25-EmptyFunction.ll X86/2008-01-25-EmptyFunction.ll

Chris Lattner sabre at nondot.org
Mon Jan 28 22:26:07 PST 2008


Author: lattner
Date: Tue Jan 29 00:26:07 2008
New Revision: 46496

URL: http://llvm.org/viewvc/llvm-project?rev=46496&view=rev
Log:
Add target triples to these so they don't fail on linux.

Modified:
    llvm/trunk/test/CodeGen/PowerPC/2008-01-25-EmptyFunction.ll
    llvm/trunk/test/CodeGen/X86/2008-01-25-EmptyFunction.ll

Modified: llvm/trunk/test/CodeGen/PowerPC/2008-01-25-EmptyFunction.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/PowerPC/2008-01-25-EmptyFunction.ll?rev=46496&r1=46495&r2=46496&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/PowerPC/2008-01-25-EmptyFunction.ll (original)
+++ llvm/trunk/test/CodeGen/PowerPC/2008-01-25-EmptyFunction.ll Tue Jan 29 00:26:07 2008
@@ -1,4 +1,6 @@
 ; RUN: llvm-as < %s | llc -march=ppc32 | grep nop
+target triple = "powerpc-apple-darwin8"
+
 
 define void @bork() noreturn nounwind  {
 entry:

Modified: llvm/trunk/test/CodeGen/X86/2008-01-25-EmptyFunction.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/X86/2008-01-25-EmptyFunction.ll?rev=46496&r1=46495&r2=46496&view=diff

==============================================================================
--- llvm/trunk/test/CodeGen/X86/2008-01-25-EmptyFunction.ll (original)
+++ llvm/trunk/test/CodeGen/X86/2008-01-25-EmptyFunction.ll Tue Jan 29 00:26:07 2008
@@ -1,4 +1,6 @@
 ; RUN: llvm-as < %s | llc -march=x86 | grep nop
+target triple = "i686-apple-darwin8"
+
 
 define void @bork() noreturn nounwind  {
 entry:





More information about the llvm-commits mailing list