From 213715bceb68f227f3af4265f79f04dd0d2608e2 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. llvm-svn: 13337 --- llvm/runtime/libprofile/Profiling.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/runtime/libprofile/Profiling.h b/llvm/runtime/libprofile/Profiling.h index 947460a29e32..61ae09bf7b86 100644 --- a/llvm/runtime/libprofile/Profiling.h +++ b/llvm/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,