mirror of
https://github.com/RPCSX/llvm.git
synced 2025-01-23 20:57:21 +00:00
Added missing 'rs1' field to F3_rdrs1imm13, 'rd' to F3_rdrs1rs2.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6618 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
aeab1e163f
commit
2e7e8fadf8
@ -75,14 +75,13 @@ class F3_rdrs1 : F3_rd {
|
||||
}
|
||||
|
||||
// F3_rdrs1simm13 - Common class of instructions that have rd, rs1, and simm13
|
||||
class F3_rdrs1simm13 : F3_rd {
|
||||
class F3_rdrs1simm13 : F3_rdrs1 {
|
||||
bits<13> simm13;
|
||||
set Inst{12-0} = simm13;
|
||||
}
|
||||
|
||||
|
||||
// F3_rdrs1rs2 - Common class of instructions that have rd, rs1, and rs2 fields
|
||||
class F3_rdrs1rs2 : F3_rs1 {
|
||||
class F3_rdrs1rs2 : F3_rdrs1 {
|
||||
bits<5> rs2;
|
||||
set Inst{4-0} = rs2;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user