forked from OSchip/llvm-project
Constants for profile info type changed names to match the C++ ones.
llvm-svn: 13344
This commit is contained in:
parent
6e72e2a6e9
commit
875d70b3c0
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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));
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue