aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen/ISDOpcodes.h
diff options
context:
space:
mode:
authorJakob Stoklund Olesen <stoklund@2pi.dk>2012-01-18 23:52:12 +0000
committerJakob Stoklund Olesen <stoklund@2pi.dk>2012-01-18 23:52:12 +0000
commit9cf37e8b48732fccd4c301ed51aafed7074bd84e (patch)
tree7b0374b0938232f4b315408499a6166b7c69e758 /include/llvm/CodeGen/ISDOpcodes.h
parent8887a0f34152b63a84e759b76694d6928d01b4ee (diff)
downloadexternal_llvm-9cf37e8b48732fccd4c301ed51aafed7074bd84e.zip
external_llvm-9cf37e8b48732fccd4c301ed51aafed7074bd84e.tar.gz
external_llvm-9cf37e8b48732fccd4c301ed51aafed7074bd84e.tar.bz2
Add a RegisterMaskSDNode class.
This SelectionDAG node will be attached to call nodes by LowerCall(), and eventually becomes a MO_RegisterMask MachineOperand on the MachineInstr representing the call instruction. LowerCall() will attach a register mask that depends on the calling convention. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@148436 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/ISDOpcodes.h')
-rw-r--r--include/llvm/CodeGen/ISDOpcodes.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/ISDOpcodes.h b/include/llvm/CodeGen/ISDOpcodes.h
index 8fb7604..ab8ab5d 100644
--- a/include/llvm/CodeGen/ISDOpcodes.h
+++ b/include/llvm/CodeGen/ISDOpcodes.h
@@ -57,7 +57,7 @@ namespace ISD {
AssertSext, AssertZext,
// Various leaf nodes.
- BasicBlock, VALUETYPE, CONDCODE, Register,
+ BasicBlock, VALUETYPE, CONDCODE, Register, RegisterMask,
Constant, ConstantFP,
GlobalAddress, GlobalTLSAddress, FrameIndex,
JumpTable, ConstantPool, ExternalSymbol, BlockAddress,