diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-10-10 18:46:52 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-10-10 18:46:52 +0000 |
commit | 17634f7668f275d3c3ac97d4b476443b2528648d (patch) | |
tree | 349b2a6dc315dd1830cf2f18f7a5043f55f027e6 /lib | |
parent | e24b616faa7fc4242f807669d502a544e9b042fd (diff) | |
download | external_llvm-17634f7668f275d3c3ac97d4b476443b2528648d.zip external_llvm-17634f7668f275d3c3ac97d4b476443b2528648d.tar.gz external_llvm-17634f7668f275d3c3ac97d4b476443b2528648d.tar.bz2 |
Include <cstdio> instead of <stdio.h>.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9032 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/SparcV9/SparcV9.burg.in | 2 | ||||
-rw-r--r-- | lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/Target/SparcV9/SparcV9.burg.in b/lib/Target/SparcV9/SparcV9.burg.in index 6c3b659..ccb3948 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 9401afe..df2b764 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); |