1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

Include cstdio to get EOF, needed with gcc-4.4.

llvm-svn: 73879
This commit is contained in:
Duncan Sands 2009-06-22 06:59:32 +00:00
parent 886ab50a50
commit 5e54310d7d

View File

@ -15,6 +15,7 @@
#include "llvm/Support/SourceMgr.h"
#include "llvm/Support/MemoryBuffer.h"
#include <cerrno>
#include <cstdio>
#include <cstdlib>
using namespace llvm;
@ -254,4 +255,4 @@ asmtok::TokKind AsmLexer::LexToken() {
// Forward/backward labels: [0-9][fb]
// Integers, fp constants, character constants.
}
}
}