Fix build of clang with gcc-4.4: #include <cstdio> was missing.

llvm-svn: 79916
This commit is contained in:
Torok Edwin 2009-08-24 13:25:12 +00:00
parent 684582b632
commit db7149246f
10 changed files with 16 additions and 0 deletions

View File

@ -19,6 +19,7 @@
#include "clang/AST/Type.h"
#include "clang/AST/ASTContext.h"
#include "clang/AST/ASTDiagnostic.h"
#include <cstdio>
using namespace clang;
static struct StmtClassNameTable {

View File

@ -17,6 +17,8 @@
#include "llvm/Module.h"
#include "llvm/Target/TargetData.h"
#include <algorithm>
#include <cstdio>
using namespace clang;
using namespace CodeGen;

View File

@ -28,6 +28,7 @@
#include "llvm/ADT/DenseSet.h"
#include "llvm/Target/TargetData.h"
#include <sstream>
#include <cstdio>
using namespace clang;
using namespace CodeGen;

View File

@ -17,6 +17,7 @@
#include "clang/AST/RecordLayout.h"
#include "llvm/Type.h"
#include "llvm/ADT/Triple.h"
#include <cstdio>
using namespace clang;
using namespace CodeGen;

View File

@ -26,6 +26,8 @@
#include "llvm/Support/Timer.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/System/Path.h"
#include <cstdio>
using namespace clang;
//===----------------------------------------------------------------------===//

View File

@ -19,6 +19,8 @@
#include "llvm/Support/raw_ostream.h"
#include "llvm/System/Path.h"
#include "llvm/ADT/OwningPtr.h"
#include <cstdio>
using namespace clang;
FixItRewriter::FixItRewriter(Diagnostic &Diags, SourceManager &SourceMgr,

View File

@ -16,6 +16,8 @@
#include "clang/AST/Expr.h"
#include "clang/AST/TypeLoc.h"
#include "llvm/Bitcode/BitstreamWriter.h"
#include <cstdio>
using namespace clang;
//===----------------------------------------------------------------------===//

View File

@ -19,6 +19,8 @@
#include "llvm/Support/raw_ostream.h"
#include "llvm/System/Path.h"
#include "llvm/ADT/OwningPtr.h"
#include <cstdio>
using namespace clang;
/// isSameToken - Return true if the two specified tokens start have the same

View File

@ -19,6 +19,8 @@
#include "clang/AST/ExternalASTSource.h"
#include "clang/AST/Stmt.h"
#include "clang/Parse/Parser.h"
#include <cstdio>
using namespace clang;
//===----------------------------------------------------------------------===//

View File

@ -23,6 +23,7 @@
#include "llvm/ADT/STLExtras.h"
#include "llvm/Support/Compiler.h"
#include <algorithm>
#include <cstdio>
namespace clang {