diff options
-rw-r--r-- | lib/Target/SparcV9/SparcV9.burg.in | 2 | ||||
-rw-r--r-- | lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp | 2 | ||||
-rw-r--r-- | runtime/GCCLibraries/crtend/C++-Exception.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/SparcV9/SparcV9.burg.in b/lib/Target/SparcV9/SparcV9.burg.in index 6c3b659199..ccb39480cc 100644 --- a/lib/Target/SparcV9/SparcV9.burg.in +++ b/lib/Target/SparcV9/SparcV9.burg.in @@ -1,5 +1,5 @@ %{ // -*- C++ -*- -Xinclude <stdio.h> +Xinclude <cstdio> Xinclude <llvm/CodeGen/InstrForest.h> typedef InstrTreeNode* NODEPTR_TYPE; diff --git a/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp b/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp index 9401afec0d..df2b764e7c 100644 --- a/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp +++ b/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp @@ -34,7 +34,7 @@ #include "llvm/Module.h" #include "Graph.h" #include <fstream> -#include "Config/stdio.h" +#include <cstdio> struct ProfilePaths : public FunctionPass { bool runOnFunction(Function &F); diff --git a/runtime/GCCLibraries/crtend/C++-Exception.cpp b/runtime/GCCLibraries/crtend/C++-Exception.cpp index b521f1464c..ad9f7a53e5 100644 --- a/runtime/GCCLibraries/crtend/C++-Exception.cpp +++ b/runtime/GCCLibraries/crtend/C++-Exception.cpp @@ -14,7 +14,7 @@ //#define DEBUG #ifdef DEBUG -#include <stdio.h> +#include <cstdio> #endif // LastCaughtException - The last exception caught by this handler. This is for |