summaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86ISelDAGToDAG.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-08-21 16:36:34 +0000
committerDan Gohman <gohman@apple.com>2008-08-21 16:36:34 +0000
commitad3460c3c968e33c5b9a07104b9fe5a5c27ff55b (patch)
tree8734fb2e04f095fd6c1dcbda1d89fa9debb00153 /lib/Target/X86/X86ISelDAGToDAG.cpp
parentca84121596640c99887f909f3b9a3ae830391e64 (diff)
downloadllvm-ad3460c3c968e33c5b9a07104b9fe5a5c27ff55b.tar.gz
llvm-ad3460c3c968e33c5b9a07104b9fe5a5c27ff55b.tar.bz2
llvm-ad3460c3c968e33c5b9a07104b9fe5a5c27ff55b.tar.xz
Simplify SelectRoot's interface, and factor out some common code
from all targets. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@55124 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86ISelDAGToDAG.cpp')
-rw-r--r--lib/Target/X86/X86ISelDAGToDAG.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86ISelDAGToDAG.cpp b/lib/Target/X86/X86ISelDAGToDAG.cpp
index 13ed07c04c..21837d53d4 100644
--- a/lib/Target/X86/X86ISelDAGToDAG.cpp
+++ b/lib/Target/X86/X86ISelDAGToDAG.cpp
@@ -592,7 +592,7 @@ void X86DAGToDAGISel::InstructionSelect(SelectionDAG &DAG) {
DOUT << "===== Instruction selection begins:\n";
Indent = 0;
#endif
- DAG.setRoot(SelectRoot(DAG.getRoot()));
+ SelectRoot();
#ifndef NDEBUG
DOUT << "===== Instruction selection ends:\n";
#endif