mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-07 14:33:15 +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:
parent
b5ee7db376
commit
77da6f1be4
@ -359,9 +359,9 @@ multiclass BranchOnReg<bits<3> cond, string OpcStr> {
|
|||||||
|
|
||||||
multiclass bpr_alias<string OpcStr, Instruction NAPT, Instruction APT> {
|
multiclass bpr_alias<string OpcStr, Instruction NAPT, Instruction APT> {
|
||||||
def : InstAlias<!strconcat(OpcStr, ",pt $rs1, $imm16"),
|
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"),
|
def : InstAlias<!strconcat(OpcStr, ",a,pt $rs1, $imm16"),
|
||||||
(APT I64Regs:$rs1, bprtarget16:$imm16)>;
|
(APT I64Regs:$rs1, bprtarget16:$imm16), 0>;
|
||||||
}
|
}
|
||||||
|
|
||||||
defm BPZ : BranchOnReg<0b001, "brz">;
|
defm BPZ : BranchOnReg<0b001, "brz">;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user