diff options
author | Chris Lattner <sabre@nondot.org> | 2002-04-09 03:37:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-04-09 03:37:11 +0000 |
commit | 3abd752f902ff730267d08c39adc634105b65bb1 (patch) | |
tree | 62907220f377f96bfb8f23cbaf1f43640a91d08e /llvm/lib/CodeGen | |
parent | 8690ac124f020cf44f33b0bdeb82e9276a6edc9d (diff) | |
download | bcm5719-llvm-3abd752f902ff730267d08c39adc634105b65bb1.tar.gz bcm5719-llvm-3abd752f902ff730267d08c39adc634105b65bb1.zip |
GCC3.0 is reported to die without an alloca definition.
llvm-svn: 2186
Diffstat (limited to 'llvm/lib/CodeGen')
-rw-r--r-- | llvm/lib/CodeGen/InstrSelection/InstrForest.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/InstrSelection/InstrForest.cpp b/llvm/lib/CodeGen/InstrSelection/InstrForest.cpp index 0934e7bbd56..95803cd1a40 100644 --- a/llvm/lib/CodeGen/InstrSelection/InstrForest.cpp +++ b/llvm/lib/CodeGen/InstrSelection/InstrForest.cpp @@ -28,6 +28,7 @@ #include "llvm/BasicBlock.h" #include "llvm/CodeGen/MachineInstr.h" #include "Support/STLExtras.h" +#include <alloca.h> #include <iostream> using std::cerr; using std::vector; |