forked from OSchip/llvm-project
Add basic block tracing information as a type of "profiling" information.
llvm-svn: 13337
This commit is contained in:
parent
e96196081e
commit
213715bceb
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue