From: Chris Lattner Date: Sat, 27 Jun 2009 00:57:02 +0000 (+0000) Subject: fix a typo that GCC should have caught that causes crashes with -view-*-dags X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=5b93ea1ca3cf55a750e58abee7ed845b210d14c8;p=oota-llvm.git fix a typo that GCC should have caught that causes crashes with -view-*-dags git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74364 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 0ab14731ae4..0342f672462 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -5540,7 +5540,7 @@ void SDNode::print_details(raw_ostream &OS, const SelectionDAG *G) const { } else if (const ExternalSymbolSDNode *ES = dyn_cast(this)) { OS << "'" << ES->getSymbol() << "'"; - if (unsigned char TF = GADN->getTargetFlags()) + if (unsigned char TF = ES->getTargetFlags()) OS << " [TF=" << TF << ']'; } else if (const SrcValueSDNode *M = dyn_cast(this)) { if (M->getValue())