1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

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 dcfc3c580e
commit 0f806b8509

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,