diff options
-rw-r--r-- | lib/AST/Stmt.cpp | 1 | ||||
-rw-r--r-- | lib/CodeGen/CGBlocks.cpp | 2 | ||||
-rw-r--r-- | lib/CodeGen/CGObjCMac.cpp | 1 | ||||
-rw-r--r-- | lib/CodeGen/TargetABIInfo.cpp | 1 | ||||
-rw-r--r-- | lib/Frontend/ASTConsumers.cpp | 2 | ||||
-rw-r--r-- | lib/Frontend/FixItRewriter.cpp | 2 | ||||
-rw-r--r-- | lib/Frontend/PCHWriterDecl.cpp | 2 | ||||
-rw-r--r-- | lib/Frontend/RewriteMacros.cpp | 2 | ||||
-rw-r--r-- | lib/Sema/ParseAST.cpp | 2 | ||||
-rw-r--r-- | lib/Sema/SemaOverload.cpp | 1 |
10 files changed, 16 insertions, 0 deletions
diff --git a/lib/AST/Stmt.cpp b/lib/AST/Stmt.cpp index cd8fba6b7a..f230018c0d 100644 --- a/lib/AST/Stmt.cpp +++ b/lib/AST/Stmt.cpp @@ -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 { diff --git a/lib/CodeGen/CGBlocks.cpp b/lib/CodeGen/CGBlocks.cpp index dad433f628..5156d488e2 100644 --- a/lib/CodeGen/CGBlocks.cpp +++ b/lib/CodeGen/CGBlocks.cpp @@ -17,6 +17,8 @@ #include "llvm/Module.h" #include "llvm/Target/TargetData.h" #include <algorithm> +#include <cstdio> + using namespace clang; using namespace CodeGen; diff --git a/lib/CodeGen/CGObjCMac.cpp b/lib/CodeGen/CGObjCMac.cpp index 457bddd764..f97b80aa40 100644 --- a/lib/CodeGen/CGObjCMac.cpp +++ b/lib/CodeGen/CGObjCMac.cpp @@ -28,6 +28,7 @@ #include "llvm/ADT/DenseSet.h" #include "llvm/Target/TargetData.h" #include <sstream> +#include <cstdio> using namespace clang; using namespace CodeGen; diff --git a/lib/CodeGen/TargetABIInfo.cpp b/lib/CodeGen/TargetABIInfo.cpp index 96c70feafe..0ca2bb29b9 100644 --- a/lib/CodeGen/TargetABIInfo.cpp +++ b/lib/CodeGen/TargetABIInfo.cpp @@ -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; diff --git a/lib/Frontend/ASTConsumers.cpp b/lib/Frontend/ASTConsumers.cpp index 026848bcd5..178f1bf8e1 100644 --- a/lib/Frontend/ASTConsumers.cpp +++ b/lib/Frontend/ASTConsumers.cpp @@ -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; //===----------------------------------------------------------------------===// diff --git a/lib/Frontend/FixItRewriter.cpp b/lib/Frontend/FixItRewriter.cpp index 030efd487e..98e2503d59 100644 --- a/lib/Frontend/FixItRewriter.cpp +++ b/lib/Frontend/FixItRewriter.cpp @@ -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, diff --git a/lib/Frontend/PCHWriterDecl.cpp b/lib/Frontend/PCHWriterDecl.cpp index c605148e2b..eed888382a 100644 --- a/lib/Frontend/PCHWriterDecl.cpp +++ b/lib/Frontend/PCHWriterDecl.cpp @@ -16,6 +16,8 @@ #include "clang/AST/Expr.h" #include "clang/AST/TypeLoc.h" #include "llvm/Bitcode/BitstreamWriter.h" +#include <cstdio> + using namespace clang; //===----------------------------------------------------------------------===// diff --git a/lib/Frontend/RewriteMacros.cpp b/lib/Frontend/RewriteMacros.cpp index 5db2170d63..30cd6ff494 100644 --- a/lib/Frontend/RewriteMacros.cpp +++ b/lib/Frontend/RewriteMacros.cpp @@ -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 diff --git a/lib/Sema/ParseAST.cpp b/lib/Sema/ParseAST.cpp index a731401dcd..b6e52570ea 100644 --- a/lib/Sema/ParseAST.cpp +++ b/lib/Sema/ParseAST.cpp @@ -19,6 +19,8 @@ #include "clang/AST/ExternalASTSource.h" #include "clang/AST/Stmt.h" #include "clang/Parse/Parser.h" +#include <cstdio> + using namespace clang; //===----------------------------------------------------------------------===// diff --git a/lib/Sema/SemaOverload.cpp b/lib/Sema/SemaOverload.cpp index c445144b62..850b5e7d8a 100644 --- a/lib/Sema/SemaOverload.cpp +++ b/lib/Sema/SemaOverload.cpp @@ -23,6 +23,7 @@ #include "llvm/ADT/STLExtras.h" #include "llvm/Support/Compiler.h" #include <algorithm> +#include <cstdio> namespace clang { |