[llvm-commits] CVS: llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp
Brian Gaeke
gaeke at cs.uiuc.edu
Fri Oct 10 13:49:14 PDT 2003
Changes in directory llvm/lib/Transforms/Instrumentation/ProfilePaths:
ProfilePaths.cpp updated: 1.34 -> 1.35
---
Log message:
Include <cstdio> instead of <stdio.h>.
---
Diffs of the changes: (+1 -1)
Index: llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp
diff -u llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp:1.34 llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp:1.35
--- llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp:1.34 Fri Oct 10 12:49:04 2003
+++ llvm/lib/Transforms/Instrumentation/ProfilePaths/ProfilePaths.cpp Fri Oct 10 13:46:51 2003
@@ -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);
More information about the llvm-commits
mailing list