diff options
author | Hal Finkel <hfinkel@anl.gov> | 2011-12-02 04:58:12 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2011-12-02 04:58:12 +0000 |
commit | 2457544630f447c933c17306490ec6eb095d2df3 (patch) | |
tree | e0662bef9acfb07e3a853dd4eaf41017c4287d97 /test/CodeGen/PowerPC/indirectbr.ll | |
parent | db809e0eb7055a5247c80500fe0ba0ac22199722 (diff) | |
download | external_llvm-2457544630f447c933c17306490ec6eb095d2df3.zip external_llvm-2457544630f447c933c17306490ec6eb095d2df3.tar.gz external_llvm-2457544630f447c933c17306490ec6eb095d2df3.tar.bz2 |
adjust the instruction ordering in some PPC tests: changes due to postRA haz. rec.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@145678 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/PowerPC/indirectbr.ll')
-rw-r--r-- | test/CodeGen/PowerPC/indirectbr.ll | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/CodeGen/PowerPC/indirectbr.ll b/test/CodeGen/PowerPC/indirectbr.ll index 36779ff..4b6f88b 100644 --- a/test/CodeGen/PowerPC/indirectbr.ll +++ b/test/CodeGen/PowerPC/indirectbr.ll @@ -17,10 +17,22 @@ entry: bb2: ; preds = %entry, %bb3 %gotovar.4.0 = phi i8* [ %gotovar.4.0.pre, %bb3 ], [ %0, %entry ] ; <i8*> [#uses=1] ; PIC: mtctr +; PIC-NEXT: li +; PIC-NEXT: li +; PIC-NEXT: li +; PIC-NEXT: li ; PIC-NEXT: bctr ; STATIC: mtctr +; STATIC-NEXT: li +; STATIC-NEXT: li +; STATIC-NEXT: li +; STATIC-NEXT: li ; STATIC-NEXT: bctr ; PPC64: mtctr +; PPC64-NEXT: li +; PPC64-NEXT: li +; PPC64-NEXT: li +; PPC64-NEXT: li ; PPC64-NEXT: bctr indirectbr i8* %gotovar.4.0, [label %L5, label %L4, label %L3, label %L2, label %L1] |