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 1d1fe918de
commit 376c6f16de
1 changed files with 2 additions and 1 deletions

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.
}
}
}