From: Chris Lattner Date: Fri, 24 Mar 2006 01:04:30 +0000 (+0000) Subject: Identify the INTRINSIC node X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=3e8f3ce8f6d7fb7bee4cf7ac27bea2e90f83b25d;p=oota-llvm.git Identify the INTRINSIC node git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27020 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index ad6605763ef..13a262508e0 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";