From: Duncan Sands Date: Fri, 25 Jul 2008 19:29:14 +0000 (+0000) Subject: Fix error: ‘std::ostream’ has not been declared X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=fcaa13a65c437b7957735750885479b6fb45103e;p=oota-llvm.git Fix error: ‘std::ostream’ has not been declared when compiling with gcc 4.3. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54041 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/CodeGen/MachineFrameInfo.h b/include/llvm/CodeGen/MachineFrameInfo.h index a38bc971cd4..6c49eaf88e0 100644 --- a/include/llvm/CodeGen/MachineFrameInfo.h +++ b/include/llvm/CodeGen/MachineFrameInfo.h @@ -16,6 +16,7 @@ #include "llvm/Support/DataTypes.h" #include +#include #include namespace llvm {