mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-26 12:20:42 +00:00
Sparc: disable printing on longer "brX,pt" aliases
This will be tested when the TableGen "should I print this Alias" heuristic is fixed (very soon). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@208965 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -359,9 +359,9 @@ multiclass BranchOnReg<bits<3> cond, string OpcStr> {
|
||||
|
||||
multiclass bpr_alias<string OpcStr, Instruction NAPT, Instruction APT> {
|
||||
def : InstAlias<!strconcat(OpcStr, ",pt $rs1, $imm16"),
|
||||
(NAPT I64Regs:$rs1, bprtarget16:$imm16)>;
|
||||
(NAPT I64Regs:$rs1, bprtarget16:$imm16), 0>;
|
||||
def : InstAlias<!strconcat(OpcStr, ",a,pt $rs1, $imm16"),
|
||||
(APT I64Regs:$rs1, bprtarget16:$imm16)>;
|
||||
(APT I64Regs:$rs1, bprtarget16:$imm16), 0>;
|
||||
}
|
||||
|
||||
defm BPZ : BranchOnReg<0b001, "brz">;
|
||||
|
||||
Reference in New Issue
Block a user