From 273595f90735f3294c1a33968db69cfc3031cb0d Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Mon, 3 May 2004 23:49:16 +0000 Subject: [PATCH] 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 --- runtime/libprofile/Profiling.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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,