summaryrefslogtreecommitdiffstats
path: root/llvm/runtime/libprofile/BasicBlockTracing.c
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2004-05-04 16:51:47 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2004-05-04 16:51:47 +0000
commit875d70b3c0f0852f36e9a503cb871f42d80ef435 (patch)
treec96433a067d0c02bd6d4b36c39b18f8d70ac3d39 /llvm/runtime/libprofile/BasicBlockTracing.c
parent6e72e2a6e99f825688a3beb76f1295fb60b65f07 (diff)
downloadbcm5719-llvm-875d70b3c0f0852f36e9a503cb871f42d80ef435.tar.gz
bcm5719-llvm-875d70b3c0f0852f36e9a503cb871f42d80ef435.zip
Constants for profile info type changed names to match the C++ ones.
llvm-svn: 13344
Diffstat (limited to 'llvm/runtime/libprofile/BasicBlockTracing.c')
-rw-r--r--llvm/runtime/libprofile/BasicBlockTracing.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/runtime/libprofile/BasicBlockTracing.c b/llvm/runtime/libprofile/BasicBlockTracing.c
index 00136330212..e70dc052843 100644
--- a/llvm/runtime/libprofile/BasicBlockTracing.c
+++ b/llvm/runtime/libprofile/BasicBlockTracing.c
@@ -23,7 +23,7 @@ static unsigned *ArrayStart, *ArrayEnd, *ArrayCursor;
* and reset the cursor to point to the beginning of the buffer.
*/
static void WriteAndFlushBBTraceData () {
- write_profiling_data(BBTrace, ArrayStart, (ArrayCursor - ArrayStart));
+ write_profiling_data(BBTraceInfo, ArrayStart, (ArrayCursor - ArrayStart));
ArrayCursor = ArrayStart;
}
OpenPOWER on IntegriCloud