[llvm] r283191 - Fix a test case failure on Apple PPC.

Nemanja Ivanovic via llvm-commits llvm-commits at lists.llvm.org
Tue Oct 4 00:37:38 PDT 2016


Author: nemanjai
Date: Tue Oct  4 02:37:38 2016
New Revision: 283191

URL: http://llvm.org/viewvc/llvm-project?rev=283191&view=rev
Log:
Fix a test case failure on Apple PPC.

Modified:
    llvm/trunk/test/CodeGen/PowerPC/vsx-vec-spill.ll

Modified: llvm/trunk/test/CodeGen/PowerPC/vsx-vec-spill.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/PowerPC/vsx-vec-spill.ll?rev=283191&r1=283190&r2=283191&view=diff
==============================================================================
--- llvm/trunk/test/CodeGen/PowerPC/vsx-vec-spill.ll (original)
+++ llvm/trunk/test/CodeGen/PowerPC/vsx-vec-spill.ll Tue Oct  4 02:37:38 2016
@@ -1,7 +1,7 @@
-; RUN: llc < %s -march=ppc64 -mattr=+vsx -verify-machineinstrs | \
-; RUN:   FileCheck %s --check-prefix=VSX
-; RUN: llc < %s -march=ppc64 -mattr=-vsx -verify-machineinstrs | \
-; RUN:   FileCheck %s --check-prefix=NOVSX
+; RUN: llc < %s -mtriple=ppc64-unknown-linux-gnu -mattr=+vsx \
+; RUN:   -verify-machineinstrs | FileCheck %s --check-prefix=VSX
+; RUN: llc < %s -mtriple=ppc64-unknown-linux-gnu -mattr=-vsx \
+; RUN:   -verify-machineinstrs | FileCheck %s --check-prefix=NOVSX
 
 define <2 x double> @interleaving_VSX_VMX(
   <2 x double> %a, <2 x double> %b, <2 x double> %c,




More information about the llvm-commits mailing list