[llvm] r307747 - Specify complete target triple in test

Matthias Braun via llvm-commits llvm-commits at lists.llvm.org
Tue Jul 11 18:16:50 PDT 2017


Author: matze
Date: Tue Jul 11 18:16:50 2017
New Revision: 307747

URL: http://llvm.org/viewvc/llvm-project?rev=307747&view=rev
Log:
Specify complete target triple in test

This should fix the problems on the greendragon build.

Modified:
    llvm/trunk/test/CodeGen/PowerPC/tailcall1-64.ll

Modified: llvm/trunk/test/CodeGen/PowerPC/tailcall1-64.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/PowerPC/tailcall1-64.ll?rev=307747&r1=307746&r2=307747&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/PowerPC/tailcall1-64.ll (original)
+++ llvm/trunk/test/CodeGen/PowerPC/tailcall1-64.ll Tue Jul 11 18:16:50 2017
@@ -1,5 +1,5 @@
-; RUN: llc -relocation-model=static -verify-machineinstrs < %s -march=ppc64 -tailcallopt | grep TC_RETURNd8
-; RUN: llc -relocation-model=static -verify-machineinstrs -march=ppc64 < %s | FileCheck %s
+; RUN: llc -relocation-model=static -verify-machineinstrs < %s -mtriple=ppc64-- -tailcallopt | grep TC_RETURNd8
+; RUN: llc -relocation-model=static -verify-machineinstrs -mtriple=ppc64-- < %s | FileCheck %s
 define fastcc i32 @tailcallee(i32 %a1, i32 %a2, i32 %a3, i32 %a4) {
 entry:
 	ret i32 %a3




More information about the llvm-commits mailing list