summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNemanja Ivanovic <nemanja.i.ibm@gmail.com>2016-10-04 07:37:38 +0000
committerNemanja Ivanovic <nemanja.i.ibm@gmail.com>2016-10-04 07:37:38 +0000
commit02ede7e72c525fe5ea0ace314d4da01fce4174a3 (patch)
treedf0063bdd859b71ce120cf8910851870fd304b23
parentd0e875cdad4ad13facadf6d1219bde72527158c9 (diff)
Fix a test case failure on Apple PPC.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@283191 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/CodeGen/PowerPC/vsx-vec-spill.ll8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/PowerPC/vsx-vec-spill.ll b/test/CodeGen/PowerPC/vsx-vec-spill.ll
index 8f65b731505..8002496e562 100644
--- a/test/CodeGen/PowerPC/vsx-vec-spill.ll
+++ b/test/CodeGen/PowerPC/vsx-vec-spill.ll
@@ -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,