[llvm-commits] CVS: llvm/runtime/libprofile/Profiling.h
Brian Gaeke
gaeke at cs.uiuc.edu
Mon May 3 18:49:04 PDT 2004
Changes in directory llvm/runtime/libprofile:
Profiling.h updated: 1.2 -> 1.3
---
Log message:
Add basic block tracing information as a type of "profiling" information.
---
Diffs of the changes: (+2 -1)
Index: llvm/runtime/libprofile/Profiling.h
diff -u llvm/runtime/libprofile/Profiling.h:1.2 llvm/runtime/libprofile/Profiling.h:1.3
--- llvm/runtime/libprofile/Profiling.h:1.2 Tue Feb 10 11:36:25 2004
+++ llvm/runtime/libprofile/Profiling.h Mon May 3 18:49:16 2004
@@ -25,7 +25,8 @@
Function = 2, /* Function profiling information */
Block = 3, /* Block profiling information */
Edge = 4, /* Edge profiling information */
- Path = 5 /* Path profiling information */
+ Path = 5, /* Path profiling information */
+ BBTrace = 6 /* Basic block trace information */
};
void write_profiling_data(enum ProfilingType PT, unsigned *Start,
More information about the llvm-commits
mailing list