From: Brian Gaeke Date: Mon, 3 May 2004 23:49:16 +0000 (+0000) Subject: Add basic block tracing information as a type of "profiling" information. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=273595f90735f3294c1a33968db69cfc3031cb0d;p=oota-llvm.git 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 --- diff --git a/runtime/libprofile/Profiling.h b/runtime/libprofile/Profiling.h index 947460a29e3..61ae09bf7b8 100644 --- a/runtime/libprofile/Profiling.h +++ b/runtime/libprofile/Profiling.h @@ -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,