OSDN Git Service

fix a typo that GCC should have caught that causes crashes with -view-*-dags
authorChris Lattner <sabre@nondot.org>
Sat, 27 Jun 2009 00:57:02 +0000 (00:57 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 27 Jun 2009 00:57:02 +0000 (00:57 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74364 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/SelectionDAG.cpp

index 0ab1473..0342f67 100644 (file)
@@ -5540,7 +5540,7 @@ void SDNode::print_details(raw_ostream &OS, const SelectionDAG *G) const {
   } else if (const ExternalSymbolSDNode *ES =
              dyn_cast<ExternalSymbolSDNode>(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<SrcValueSDNode>(this)) {
     if (M->getValue())