diff options
author | Simon Dardis <simon.dardis@mips.com> | 2018-04-30 14:03:35 +0000 |
---|---|---|
committer | Simon Dardis <simon.dardis@mips.com> | 2018-04-30 14:03:35 +0000 |
commit | 5a512d63c9b43bfaaf928789d423e25847fe4b4f (patch) | |
tree | 779c7bffcffd8e0f3ae37effe62e26289f04eb1c /llvm/test | |
parent | d637c05986aecdffed1c8f9482f5d698eb605e1f (diff) | |
download | bcm5719-llvm-5a512d63c9b43bfaaf928789d423e25847fe4b4f.tar.gz bcm5719-llvm-5a512d63c9b43bfaaf928789d423e25847fe4b4f.zip |
Revert "[mips] Fix the predicates of jump and branch and link instructions"
That commit broke one of the LLD builders, reverting while I investigate.
This patch reverts r331175.
llvm-svn: 331178
Diffstat (limited to 'llvm/test')
-rw-r--r-- | llvm/test/CodeGen/Mips/br-jmp.ll | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/test/CodeGen/Mips/br-jmp.ll b/llvm/test/CodeGen/Mips/br-jmp.ll index cd50875588f..1323dedb462 100644 --- a/llvm/test/CodeGen/Mips/br-jmp.ll +++ b/llvm/test/CodeGen/Mips/br-jmp.ll @@ -5,7 +5,7 @@ ; RUN: llc -asm-show-inst -march=mips -mattr=+micromips -relocation-model=static < %s | FileCheck %s -check-prefix=STATICMM ; RUN: llc -asm-show-inst -march=mips -mattr=+micromips -relocation-model=pic < %s | FileCheck %s -check-prefix=PICMM ; RUN: llc -asm-show-inst -march=mips -mcpu=mips32r6 -mattr=+micromips -relocation-model=static < %s | FileCheck %s -check-prefix=STATICMMR6 -; RUN: llc -asm-show-inst -march=mips -mcpu=mips32r6 -mattr=+micromips -relocation-model=pic < %s | FileCheck %s -check-prefix=PICMMR6 +; RUN: llc -asm-show-inst -march=mips -mcpu=mips32r6 -mattr=+micromips -relocation-model=pic < %s | FileCheck %s -check-prefix=PIC @@ -22,6 +22,5 @@ bosco: ; preds = %bosco, %entry ; STATIC: j $BB0_1 # <MCInst #{{.*}} J ; STATICMM: j $BB0_1 # <MCInst #{{.*}} J_MM ; STATICMMR6: bc $BB0_1 # <MCInst #{{.*}} BC_MMR6 -; PICMMR6: bc $BB0_1 # <MCInst #{{.*}} BC_MMR6 ; PIC16: b $BB0_1 ; STATIC16: b $BB0_1 |