[llvm-commits] [llvm] r116170 - /llvm/trunk/test/CodeGen/PowerPC/varargs.ll

Chris Lattner sabre at nondot.org
Sun Oct 10 11:59:01 PDT 2010


Author: lattner
Date: Sun Oct 10 13:59:01 2010
New Revision: 116170

URL: http://llvm.org/viewvc/llvm-project?rev=116170&view=rev
Log:
force a triple, varargs isn't supported with the SVR4 ABI the buildbot tells me.

Modified:
    llvm/trunk/test/CodeGen/PowerPC/varargs.ll

Modified: llvm/trunk/test/CodeGen/PowerPC/varargs.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/PowerPC/varargs.ll?rev=116170&r1=116169&r2=116170&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/PowerPC/varargs.ll (original)
+++ llvm/trunk/test/CodeGen/PowerPC/varargs.ll Sun Oct 10 13:59:01 2010
@@ -1,5 +1,5 @@
-; RUN: llc < %s -march=ppc32 | FileCheck -check-prefix=P32 %s
-; RUN: llc < %s -march=ppc64 | FileCheck -check-prefix=P64 %s
+; RUN: llc < %s -mtriple=powerpc-apple-darwin | FileCheck -check-prefix=P32 %s
+; RUN: llc < %s -mtriple=powerpc64-apple-darwin | FileCheck -check-prefix=P64 %s
 
 ; PR8327
 define i8* @test1(i8** %foo) nounwind {





More information about the llvm-commits mailing list