diff options
| author | Zoran Jovanovic <zoran.jovanovic@imgtec.com> | 2013-11-04 14:53:22 +0000 |
|---|---|---|
| committer | Zoran Jovanovic <zoran.jovanovic@imgtec.com> | 2013-11-04 14:53:22 +0000 |
| commit | 8a80aa76c81c2bed7939938ffc6754850bf46488 (patch) | |
| tree | cc0b25b42f94f85b62ce23223ad5c476917a4ff6 /llvm/lib/Target/Mips/MipsInstrFormats.td | |
| parent | d6f14d98c2ac47d172a3db01a6af04ea11486182 (diff) | |
| download | bcm5719-llvm-8a80aa76c81c2bed7939938ffc6754850bf46488.tar.gz bcm5719-llvm-8a80aa76c81c2bed7939938ffc6754850bf46488.zip | |
Support for microMIPS branch instructions.
llvm-svn: 193992
Diffstat (limited to 'llvm/lib/Target/Mips/MipsInstrFormats.td')
| -rw-r--r-- | llvm/lib/Target/Mips/MipsInstrFormats.td | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/Mips/MipsInstrFormats.td b/llvm/lib/Target/Mips/MipsInstrFormats.td index c46706b1515..8f67b2e5edb 100644 --- a/llvm/lib/Target/Mips/MipsInstrFormats.td +++ b/llvm/lib/Target/Mips/MipsInstrFormats.td @@ -272,7 +272,7 @@ class SRLV_FM<bits<6> funct, bit rotate> : StdArch { let Inst{5-0} = funct; } -class BEQ_FM<bits<6> op> { +class BEQ_FM<bits<6> op> : StdArch { bits<5> rs; bits<5> rt; bits<16> offset; @@ -285,7 +285,7 @@ class BEQ_FM<bits<6> op> { let Inst{15-0} = offset; } -class BGEZ_FM<bits<6> op, bits<5> funct> { +class BGEZ_FM<bits<6> op, bits<5> funct> : StdArch { bits<5> rs; bits<16> offset; @@ -389,7 +389,7 @@ class JALR_FM : StdArch { let Inst{5-0} = 9; } -class BGEZAL_FM<bits<5> funct> { +class BGEZAL_FM<bits<5> funct> : StdArch { bits<5> rs; bits<16> offset; |

