projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a3b7f62
)
Unbreak the build on non-apple compilers :-(
author
Chris Lattner
<sabre@nondot.org>
Mon, 27 Mar 2006 16:10:59 +0000
(16:10 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Mon, 27 Mar 2006 16:10:59 +0000
(16:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27173
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/CodeGen/SelectionDAG/SelectionDAG.cpp
patch
|
blob
|
history
diff --git
a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index 43679c7daad7b18e4dd4cda35807a0436bd9b551..3d222788521c5207aaf24a8578e9bee75d1bdf5f 100644
(file)
--- a/
lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/
lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@
-2689,10
+2689,11
@@
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:
+ case ISD::INTRINSIC:
{
bool hasChain = getOperand(0).getValueType() == MVT::Other;
unsigned IID = cast<ConstantSDNode>(getOperand(hasChain))->getValue();
return Intrinsic::getName((Intrinsic::ID)IID);
+ }
case ISD::BUILD_VECTOR: return "BUILD_VECTOR";
case ISD::TargetConstant: return "TargetConstant";