summaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/2012-11-16-mischedcall.ll
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2012-11-18 06:21:03 +0000
committerAndrew Trick <atrick@apple.com>2012-11-18 06:21:03 +0000
commit410fe6fe1996baf5606c8ea5be60497005c4ae7f (patch)
tree9081d2663bbb4cbf48c844eff6222b216439b9da /test/CodeGen/PowerPC/2012-11-16-mischedcall.ll
parentfad9751d6e7449867384f87ae296373559d41b0b (diff)
downloadllvm-410fe6fe1996baf5606c8ea5be60497005c4ae7f.tar.gz
llvm-410fe6fe1996baf5606c8ea5be60497005c4ae7f.tar.bz2
llvm-410fe6fe1996baf5606c8ea5be60497005c4ae7f.tar.xz
Use a full triple for a PPC test case for asm syntax.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@168283 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/2012-11-16-mischedcall.ll')
-rw-r--r--test/CodeGen/PowerPC/2012-11-16-mischedcall.ll6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/CodeGen/PowerPC/2012-11-16-mischedcall.ll b/test/CodeGen/PowerPC/2012-11-16-mischedcall.ll
index 7bbbbe9bec..35e3fdd26e 100644
--- a/test/CodeGen/PowerPC/2012-11-16-mischedcall.ll
+++ b/test/CodeGen/PowerPC/2012-11-16-mischedcall.ll
@@ -1,4 +1,4 @@
-; RUN: llc -march=ppc64 -enable-misched < %s | FileCheck %s
+; RUN: llc -mtriple=powerpc64-bgq-linux -enable-misched < %s | FileCheck %s
;
; PR14315: misched should not move the physreg copy of %t below the calls.
@@ -9,8 +9,8 @@ declare void @init() nounwind
declare void @clock() nounwind
; CHECK: %entry
-; fmr f31, f1
-; bl _init
+; CHECK: fmr 31, 1
+; CHECK: bl init
define void @s332(double %t) nounwind {
entry:
tail call void @init()