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 | b8a4ed6543b36db4293ad97cbb2c5b7047ef0a17 (patch) | |
tree | 1637c478e40a5fd6553ccf6c84f58a4601098365 /llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp | |
parent | cc31fddf134493d7046c88ea46baf4975eb77378 (diff) | |
download | bcm5719-llvm-b8a4ed6543b36db4293ad97cbb2c5b7047ef0a17.tar.gz bcm5719-llvm-b8a4ed6543b36db4293ad97cbb2c5b7047ef0a17.zip |
Include <cstdio> instead of <stdio.h>.
llvm-svn: 9032
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp b/llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp index 9401afec0d0..df2b764e7c8 100644 --- a/llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp +++ b/llvm/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); |