aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
diff options
context:
space:
mode:
authorAndrew Lenharth <andrewl@lenharth.org>2005-03-31 21:24:06 +0000
committerAndrew Lenharth <andrewl@lenharth.org>2005-03-31 21:24:06 +0000
commit95762124a1d781cc0f8cbc4c22e9c5c1358d7ea0 (patch)
treec4fdfe8fa23cb3d7879fb0e05ecd17a47e4d86b4 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp
parentbeeaab28a5643e8b17921b35d4b4af32e21562a0 (diff)
PCMarker support for DAG and Alpha
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20965 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAG.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
index d4804d9822..edc5b8c6f5 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
+++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp
@@ -1099,6 +1099,7 @@ bool SDNode::hasNUsesOfValue(unsigned NUses, unsigned Value) {
const char *SDNode::getOperationName() const {
switch (getOpcode()) {
default: return "<<Unknown>>";
+ case ISD::PCMARKER: return "PCMarker";
case ISD::EntryToken: return "EntryToken";
case ISD::TokenFactor: return "TokenFactor";
case ISD::Constant: return "Constant";