commit | ac6d9bec671252dd1e596fa71180ff6b39d06b5d | [log] [tgz] |
---|---|---|
author | Andrew Trick <atrick@apple.com> | Sat May 25 02:42:55 2013 +0000 |
committer | Andrew Trick <atrick@apple.com> | Sat May 25 02:42:55 2013 +0000 |
tree | 414f60df511ae112e9498df4f722cb1a9ee2fbba | |
parent | ea5db0c315f1ab8ee3be52e0e765c32d3efff024 [diff] [blame] |
Track IR ordering of SelectionDAG nodes 2/4. Change SelectionDAG::getXXXNode() interfaces as well as call sites of these functions to pass in SDLoc instead of DebugLoc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@182703 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp b/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp index 47b0391..b6cc7ea 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp
@@ -489,8 +489,7 @@ OS << " [TF=" << TF << ']'; } - if (G) - if (unsigned Order = G->GetOrdering(this)) + if (unsigned Order = getIROrder()) OS << " [ORD=" << Order << ']'; if (getNodeId() != -1)