summaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-04-20 15:00:41 +0000
committerDan Gohman <gohman@apple.com>2010-04-20 15:00:41 +0000
commitba5be5c07bb19dcf484e3aa40cd139dd07c10407 (patch)
tree252b40271c03df5d9f7c87d8be20af9987975cf7 /lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
parente08b320f15b95eb3279fddba6ccb615eafbc4225 (diff)
downloadllvm-ba5be5c07bb19dcf484e3aa40cd139dd07c10407.tar.gz
llvm-ba5be5c07bb19dcf484e3aa40cd139dd07c10407.tar.bz2
llvm-ba5be5c07bb19dcf484e3aa40cd139dd07c10407.tar.xz
Don't send PHI nodes down to SelectionDAGBuilder of FastISel, since
they end up doing nothing. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101904 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h')
-rw-r--r--lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
index 1f9e43ff33..ad18850bac 100644
--- a/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
+++ b/lib/CodeGen/SelectionDAG/SelectionDAGBuilder.h
@@ -468,7 +468,7 @@ private:
void visitAlloca(const AllocaInst &I);
void visitLoad(const LoadInst &I);
void visitStore(const StoreInst &I);
- void visitPHI(const PHINode &I) { } // PHI nodes are handled specially.
+ void visitPHI(const PHINode &I);
void visitCall(const CallInst &I);
bool visitMemCmpCall(const CallInst &I);