diff options
| author | Andrew Trick <atrick@apple.com> | 2012-11-18 06:21:03 +0000 |
|---|---|---|
| committer | Andrew Trick <atrick@apple.com> | 2012-11-18 06:21:03 +0000 |
| commit | e615ad00631996fcaf4e0f5e8ac256d6b296674e (patch) | |
| tree | a73ffea6886886e4ffdbeadf87c24fc5e85bafd5 | |
| parent | 34280412bb761f2410ec8bd3a068b2b51f9ea6d2 (diff) | |
| download | bcm5719-llvm-e615ad00631996fcaf4e0f5e8ac256d6b296674e.tar.gz bcm5719-llvm-e615ad00631996fcaf4e0f5e8ac256d6b296674e.zip | |
Use a full triple for a PPC test case for asm syntax.
llvm-svn: 168283
| -rw-r--r-- | llvm/test/CodeGen/PowerPC/2012-11-16-mischedcall.ll | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/test/CodeGen/PowerPC/2012-11-16-mischedcall.ll b/llvm/test/CodeGen/PowerPC/2012-11-16-mischedcall.ll index 7bbbbe9bece..35e3fdd26e7 100644 --- a/llvm/test/CodeGen/PowerPC/2012-11-16-mischedcall.ll +++ b/llvm/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() |

