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 | ebac9a4adf380b7b37555fafb55969d25219bd5a (patch) | |
tree | e52a98bdc2e7ec15f5bd186274d0c730b99f5736 /llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | 18e28b58a85100b0c9b624a6daa91ce5ea23b702 (diff) | |
download | bcm5719-llvm-ebac9a4adf380b7b37555fafb55969d25219bd5a.tar.gz bcm5719-llvm-ebac9a4adf380b7b37555fafb55969d25219bd5a.zip |
Identify the INTRINSIC node
llvm-svn: 27020
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index ad6605763ef..13a262508e0 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/llvm/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"; |