diff options
author | Chris Lattner <sabre@nondot.org> | 2005-05-13 07:33:32 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-05-13 07:33:32 +0000 |
commit | d0b0ecca3f82be0fad468e016c2af22e8ae9c517 (patch) | |
tree | 9c5c78f4ccee46ab10aba971b9ebe1be96f7f4e1 /llvm/lib/CodeGen | |
parent | 0220b2952f600e46b3f8589476163a744bf10a3f (diff) | |
download | bcm5719-llvm-d0b0ecca3f82be0fad468e016c2af22e8ae9c517.tar.gz bcm5719-llvm-d0b0ecca3f82be0fad468e016c2af22e8ae9c517.zip |
Emit function entry code after lowering hte arguments.
llvm-svn: 21931
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp index bda0fcbb2bc..70ba42e03a2 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp @@ -932,8 +932,6 @@ bool SelectionDAGISel::runOnFunction(Function &Fn) { FunctionLoweringInfo FuncInfo(TLI, Fn, MF); - EmitFunctionEntryCode(Fn, MF); - for (Function::iterator I = Fn.begin(), E = Fn.end(); I != E; ++I) SelectBasicBlock(I, MF, FuncInfo); @@ -1012,6 +1010,8 @@ LowerArguments(BasicBlock *BB, SelectionDAGLowering &SDL, } } } + + EmitFunctionEntryCode(F, SDL.DAG.getMachineFunction()); } // See if there are any block-local arguments that need to be emitted in this |