diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-06-27 00:57:02 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-06-27 00:57:02 +0000 |
| commit | 093adbb08652b7b6179629f5c184f8a9e3b85792 (patch) | |
| tree | 3d40c87abfd8bb4bb5402592d4f67b2f3f38b6b7 /lib/CodeGen | |
| parent | 691ed1c8a720c05984f28aa42f63bb13c2fd7817 (diff) | |
| download | external_llvm-093adbb08652b7b6179629f5c184f8a9e3b85792.zip external_llvm-093adbb08652b7b6179629f5c184f8a9e3b85792.tar.gz external_llvm-093adbb08652b7b6179629f5c184f8a9e3b85792.tar.bz2 | |
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
Diffstat (limited to 'lib/CodeGen')
| -rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 0ab1473..0342f67 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<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()) |
