mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 23:32:27 +00:00
Capture more operand info, patch by Evan Cheng
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24422 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
44fa764355
commit
be7a2ff2dd
@ -172,9 +172,10 @@ def variable_ops;
|
|||||||
/// by a target. Targets can optionally provide their own operand types as
|
/// by a target. Targets can optionally provide their own operand types as
|
||||||
/// needed, though this should not be needed for RISC targets.
|
/// needed, though this should not be needed for RISC targets.
|
||||||
class Operand<ValueType ty> {
|
class Operand<ValueType ty> {
|
||||||
int NumMIOperands = 1;
|
|
||||||
ValueType Type = ty;
|
ValueType Type = ty;
|
||||||
string PrintMethod = "printOperand";
|
string PrintMethod = "printOperand";
|
||||||
|
int NumMIOperands = 1;
|
||||||
|
dag MIOperandInfo = (ops);
|
||||||
}
|
}
|
||||||
|
|
||||||
def i1imm : Operand<i1>;
|
def i1imm : Operand<i1>;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user