summaryrefslogtreecommitdiff
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
commit9fa49c8906e08296548e0ee0c8c9c5852781684a (patch)
tree01fed88c5797b0cdde69b7f76994c1592ce4b5ec
parent40114b780b1f1243e5b4dcc45e6685b3c77d3b32 (diff)
downloadllvm-9fa49c8906e08296548e0ee0c8c9c5852781684a.tar.gz
llvm-9fa49c8906e08296548e0ee0c8c9c5852781684a.tar.bz2
llvm-9fa49c8906e08296548e0ee0c8c9c5852781684a.tar.xz
Constants for profile info type changed names to match the C++ ones.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13344 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--runtime/libprofile/BasicBlockTracing.c2
-rw-r--r--runtime/libprofile/CommonProfiling.c2
-rw-r--r--runtime/libprofile/FunctionProfiling.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/runtime/libprofile/BasicBlockTracing.c b/runtime/libprofile/BasicBlockTracing.c
index 0013633021..e70dc05284 100644
--- a/runtime/libprofile/BasicBlockTracing.c
+++ b/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;
}
diff --git a/runtime/libprofile/CommonProfiling.c b/runtime/libprofile/CommonProfiling.c
index aeb9c606e4..16bd9bd4c5 100644
--- a/runtime/libprofile/CommonProfiling.c
+++ b/runtime/libprofile/CommonProfiling.c
@@ -99,7 +99,7 @@ void write_profiling_data(enum ProfilingType PT, unsigned *Start,
/* Output the command line arguments to the file. */
{
- int PTy = Arguments;
+ int PTy = ArgumentInfo;
int Zeros = 0;
write(OutFile, &PTy, sizeof(int));
write(OutFile, &SavedArgsLength, sizeof(unsigned));
diff --git a/runtime/libprofile/FunctionProfiling.c b/runtime/libprofile/FunctionProfiling.c
index 5f9c4f2e38..d030053094 100644
--- a/runtime/libprofile/FunctionProfiling.c
+++ b/runtime/libprofile/FunctionProfiling.c
@@ -25,7 +25,7 @@ static unsigned NumElements;
static void FuncProfAtExitHandler() {
/* Just write out the data we collected.
*/
- write_profiling_data(Function, ArrayStart, NumElements);
+ write_profiling_data(FunctionInfo, ArrayStart, NumElements);
}