Fairly major change: emit fixed sized allocas in the entry block as a variable,
authorChris Lattner <sabre@nondot.org>
Tue, 17 Jun 2003 04:39:14 +0000 (04:39 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 17 Jun 2003 04:39:14 +0000 (04:39 +0000)
commita8ab89e3da4fcd85f330ee3f85ac656cbb6cf048
tree6658365b85501d22b4059f03d850c011d436709a
parentbea68b3021ee9fea9ca28f8d14e742b025f95c2b
Fairly major change: emit fixed sized allocas in the entry block as a variable,
instead of a variable pointer and an alloca.  All accesses to the variable then
use the address-of operator to access it.  This plays better with the internal
GCC code generation phases, which bail early on functions which contain allocas.
It also makes the code a bit easier to read.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6734 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/CBackend/CBackend.cpp
lib/Target/CBackend/Writer.cpp