mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
Add support for the CC registers for Sparc BE
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5296 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4091233dfd
commit
4d69c8e369
@ -473,6 +473,14 @@ public:
|
||||
UTy, isPCRelative));
|
||||
}
|
||||
|
||||
void addCCRegOperand(Value *V, MOTy::UseType UTy = MOTy::Use) {
|
||||
assert(!OperandsComplete() &&
|
||||
"Trying to add an operand to a machine instr that is already done!");
|
||||
operands.push_back(MachineOperand(V, MachineOperand::MO_CCRegister, UTy,
|
||||
false));
|
||||
}
|
||||
|
||||
|
||||
/// addRegOperand - Add a symbolic virtual register reference...
|
||||
///
|
||||
void addRegOperand(int reg, bool isDef) {
|
||||
|
Loading…
Reference in New Issue
Block a user