Allow targets to emit code into the entry block of each function
authorChris Lattner <sabre@nondot.org>
Fri, 13 May 2005 07:23:21 +0000 (07:23 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 13 May 2005 07:23:21 +0000 (07:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21930 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/SelectionDAG/SelectionDAGISel.cpp

index b2b84dfaea92a74578828485261c51e6633263b6..bda0fcbb2bc3ee7eea2ad58c3fb757f87cf192c6 100644 (file)
@@ -932,6 +932,8 @@ 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);