From: Duncan Sands Date: Mon, 24 Aug 2009 10:34:41 +0000 (+0000) Subject: Fix the build with gcc-4.4 on linux: header needed X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=bcef7df6ec9aba7c5009a4d33944f80227563665;p=oota-llvm.git Fix the build with gcc-4.4 on linux: header needed for EOF. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@79908 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/AsmParser/LLLexer.cpp b/lib/AsmParser/LLLexer.cpp index b98669efa3d..8d6b5dbb134 100644 --- a/lib/AsmParser/LLLexer.cpp +++ b/lib/AsmParser/LLLexer.cpp @@ -21,6 +21,7 @@ #include "llvm/Support/SourceMgr.h" #include "llvm/Support/raw_ostream.h" #include "llvm/Assembly/Parser.h" +#include #include #include using namespace llvm;