Skip to content

Commit

Permalink
Add basic block tracing information as a type of "profiling" informat…
Browse files Browse the repository at this point in the history
…ion.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13337 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
Brian Gaeke committed May 3, 2004
1 parent ebbc0e9 commit 273595f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion runtime/libprofile/Profiling.h
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 273595f

Please sign in to comment.