diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-24 01:04:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-24 01:04:30 +0000 |
commit | 3e8f3ce8f6d7fb7bee4cf7ac27bea2e90f83b25d (patch) | |
tree | c49c95339333da750aef273bf94a7b1ddac0bd25 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 72601cac6051a9571ca4db3b32d6a73e40b40bd1 (diff) |
Identify the INTRINSIC node
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27020 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index ad6605763e..13a262508e 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -2615,6 +2615,7 @@ const char *SDNode::getOperationName(const SelectionDAG *G) const { case ISD::FrameIndex: return "FrameIndex"; case ISD::ConstantPool: return "ConstantPool"; case ISD::ExternalSymbol: return "ExternalSymbol"; + case ISD::INTRINSIC: return "INTRINSIC"; case ISD::BUILD_VECTOR: return "BUILD_VECTOR"; case ISD::TargetConstant: return "TargetConstant"; |