summaryrefslogtreecommitdiff
path: root/test/CodeGen/PowerPC/2007-04-30-InlineAsmEarlyClobber.ll
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2010-02-03 01:40:33 +0000
committerDale Johannesen <dalej@apple.com>2010-02-03 01:40:33 +0000
commit9a6636b2cdb2be054850d69619504058f7c8ed91 (patch)
tree23b2b277219d730be38bde21e0eb6da12fc24f46 /test/CodeGen/PowerPC/2007-04-30-InlineAsmEarlyClobber.ll
parent850d2e2a1b58ea30abed10ca955259d60d07d97a (diff)
downloadllvm-9a6636b2cdb2be054850d69619504058f7c8ed91.tar.gz
llvm-9a6636b2cdb2be054850d69619504058f7c8ed91.tar.bz2
llvm-9a6636b2cdb2be054850d69619504058f7c8ed91.tar.xz
Reapply 95050 with a tweak to check the register class.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95183 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/2007-04-30-InlineAsmEarlyClobber.ll')
-rw-r--r--test/CodeGen/PowerPC/2007-04-30-InlineAsmEarlyClobber.ll4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CodeGen/PowerPC/2007-04-30-InlineAsmEarlyClobber.ll b/test/CodeGen/PowerPC/2007-04-30-InlineAsmEarlyClobber.ll
index c4ed1663a4..d1d28ae15b 100644
--- a/test/CodeGen/PowerPC/2007-04-30-InlineAsmEarlyClobber.ll
+++ b/test/CodeGen/PowerPC/2007-04-30-InlineAsmEarlyClobber.ll
@@ -1,7 +1,7 @@
; RUN: llc < %s | grep {subfc r3,r5,r4}
; RUN: llc < %s | grep {subfze r4,r2}
-; RUN: llc < %s -regalloc=local | grep {subfc r5,r4,r3}
-; RUN: llc < %s -regalloc=local | grep {subfze r2,r2}
+; RUN: llc < %s -regalloc=local | grep {subfc r2,r5,r4}
+; RUN: llc < %s -regalloc=local | grep {subfze r3,r3}
; The first argument of subfc must not be the same as any other register.
; PR1357