diff options
author | Akira Hatanaka <ahatanaka@mips.com> | 2013-07-30 20:42:19 +0000 |
---|---|---|
committer | Akira Hatanaka <ahatanaka@mips.com> | 2013-07-30 20:42:19 +0000 |
commit | 80bec28b6645676a7cd9408d780b4c805774ef42 (patch) | |
tree | a938dbb308ad2654a4d25a058b1964ca6a7c5712 /lib | |
parent | e4049f66a40f6ba61d6aeb2b0e649b9c9b89b8d0 (diff) | |
download | external_llvm-80bec28b6645676a7cd9408d780b4c805774ef42.zip external_llvm-80bec28b6645676a7cd9408d780b4c805774ef42.tar.gz external_llvm-80bec28b6645676a7cd9408d780b4c805774ef42.tar.bz2 |
[mips] Delete instruction format for "bal".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187443 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/Mips/MipsInstrFormats.td | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/Target/Mips/MipsInstrFormats.td b/lib/Target/Mips/MipsInstrFormats.td index fb55cd2..c3108aa 100644 --- a/lib/Target/Mips/MipsInstrFormats.td +++ b/lib/Target/Mips/MipsInstrFormats.td @@ -401,17 +401,6 @@ class JALR_FM { let Inst{5-0} = 9; } -class BAL_FM { - bits<16> offset; - - bits<32> Inst; - - let Inst{31-26} = 1; - let Inst{25-21} = 0; - let Inst{20-16} = 0x11; - let Inst{15-0} = offset; -} - class BGEZAL_FM<bits<5> funct> { bits<5> rs; bits<16> offset; |