mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-26 05:32:25 +00:00
Add basic block tracing information as a type of "profiling" information.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13337 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ebbc0e9bbf
commit
273595f907
@ -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
Block a user