Constants for profile info type changed names to match the C++ ones.

llvm-svn: 13344
This commit is contained in:
Brian Gaeke 2004-05-04 16:51:47 +00:00
parent 6e72e2a6e9
commit 875d70b3c0
3 changed files with 3 additions and 3 deletions

View File

@ -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;
}

View File

@ -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));

View File

@ -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);
}