aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2009-08-24 10:34:41 +0000
committerDuncan Sands <baldrick@free.fr>2009-08-24 10:34:41 +0000
commit950e3aed48817f8a618518367a46905a93cc1351 (patch)
tree5cb9ddf18ac7ad19d4879de6d18e38a956b446b3 /lib
parentf27a61c790fd9c2c8a559a3555527aba6f9f1eba (diff)
downloadexternal_llvm-950e3aed48817f8a618518367a46905a93cc1351.zip
external_llvm-950e3aed48817f8a618518367a46905a93cc1351.tar.gz
external_llvm-950e3aed48817f8a618518367a46905a93cc1351.tar.bz2
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
Diffstat (limited to 'lib')
-rw-r--r--lib/AsmParser/LLLexer.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/AsmParser/LLLexer.cpp b/lib/AsmParser/LLLexer.cpp
index b98669e..8d6b5db 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 <cstdio>
#include <cstdlib>
#include <cstring>
using namespace llvm;