summaryrefslogtreecommitdiff
path: root/lib/Target/MSP430/MSP430MCInstLower.cpp
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2012-01-18 23:52:19 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2012-01-18 23:52:19 +0000
commit71f0fc1ca88965b69b4b2c8794a7144bc93d4bba (patch)
tree74d90f8e2fc12215de756277e0b66154c392e64f /lib/Target/MSP430/MSP430MCInstLower.cpp
parent9cf37e8b48732fccd4c301ed51aafed7074bd84e (diff)
downloadllvm-71f0fc1ca88965b69b4b2c8794a7144bc93d4bba.tar.gz
llvm-71f0fc1ca88965b69b4b2c8794a7144bc93d4bba.tar.bz2
llvm-71f0fc1ca88965b69b4b2c8794a7144bc93d4bba.tar.xz
Ignore register mask operands when lowering instructions to MC.
This is similar to implicit register operands. MC doesn't understand register liveness and call clobbers. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148437 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/MSP430/MSP430MCInstLower.cpp')
-rw-r--r--lib/Target/MSP430/MSP430MCInstLower.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/Target/MSP430/MSP430MCInstLower.cpp b/lib/Target/MSP430/MSP430MCInstLower.cpp
index d1d9a11586..cd84db8a5e 100644
--- a/lib/Target/MSP430/MSP430MCInstLower.cpp
+++ b/lib/Target/MSP430/MSP430MCInstLower.cpp
@@ -143,6 +143,9 @@ void MSP430MCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
break;
case MachineOperand::MO_BlockAddress:
MCOp = LowerSymbolOperand(MO, GetBlockAddressSymbol(MO));
+ break;
+ case MachineOperand::MO_RegisterMask:
+ continue;
}
OutMI.addOperand(MCOp);