Add basic block tracing information as a type of "profiling" information.

llvm-svn: 13337
This commit is contained in:
Brian Gaeke 2004-05-03 23:49:16 +00:00
parent e96196081e
commit 213715bceb
1 changed files with 2 additions and 1 deletions

View File

@ -25,7 +25,8 @@ enum ProfilingType {
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,