diff options
author | Simon Atanasyan <simon@atanasyan.com> | 2018-08-29 14:53:55 +0000 |
---|---|---|
committer | Simon Atanasyan <simon@atanasyan.com> | 2018-08-29 14:53:55 +0000 |
commit | a7999216f8313aaebfd93bd0d2d76742a09e5388 (patch) | |
tree | 07a61d512b322a78ab6345ea619378754d9cfd0c /llvm/lib/Target/Mips/MipsSEInstrInfo.cpp | |
parent | d4e19d272ac93885f235ef83bd96ac633ec0d56f (diff) | |
download | bcm5719-llvm-a7999216f8313aaebfd93bd0d2d76742a09e5388.tar.gz bcm5719-llvm-a7999216f8313aaebfd93bd0d2d76742a09e5388.zip |
[mips] Involves microMIPS's jump in the analyzable branch set
Involves microMIPS's jump in the analyzable branch set to reduce some
code patterns.
Differential revision: https://reviews.llvm.org/D50613
llvm-svn: 340931
Diffstat (limited to 'llvm/lib/Target/Mips/MipsSEInstrInfo.cpp')
-rw-r--r-- | llvm/lib/Target/Mips/MipsSEInstrInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp b/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp index 7ffe4aff474..9f697cd03cb 100644 --- a/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp +++ b/llvm/lib/Target/Mips/MipsSEInstrInfo.cpp @@ -643,7 +643,7 @@ unsigned MipsSEInstrInfo::getAnalyzableBrOpc(unsigned Opc) const { Opc == Mips::BNE64 || Opc == Mips::BGTZ64 || Opc == Mips::BGEZ64 || Opc == Mips::BLTZ64 || Opc == Mips::BLEZ64 || Opc == Mips::BC1T || Opc == Mips::BC1F || Opc == Mips::B || Opc == Mips::J || - Opc == Mips::B_MM || Opc == Mips::BEQZC_MM || + Opc == Mips::J_MM || Opc == Mips::B_MM || Opc == Mips::BEQZC_MM || Opc == Mips::BNEZC_MM || Opc == Mips::BEQC || Opc == Mips::BNEC || Opc == Mips::BLTC || Opc == Mips::BGEC || Opc == Mips::BLTUC || Opc == Mips::BGEUC || Opc == Mips::BGTZC || Opc == Mips::BLEZC || |