diff options
author | Torok Edwin <edwintorok@gmail.com> | 2009-08-24 13:25:12 +0000 |
---|---|---|
committer | Torok Edwin <edwintorok@gmail.com> | 2009-08-24 13:25:12 +0000 |
commit | f42e4a6e089e8413247400fe58ad299193371f9c (patch) | |
tree | f4d487ff2f05b8854814d9d23feee6542d0a04e1 /lib/Frontend/ASTConsumers.cpp | |
parent | 1bba242c85038a27865259ef8a50643e19b2079e (diff) |
Fix build of clang with gcc-4.4: #include <cstdio> was missing.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@79916 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/ASTConsumers.cpp')
-rw-r--r-- | lib/Frontend/ASTConsumers.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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; //===----------------------------------------------------------------------===// |