1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-23 11:13:28 +01:00

The counters are unsigned.

llvm-svn: 129380
This commit is contained in:
Nick Lewycky 2011-04-12 19:35:45 +00:00
parent 1db776a52e
commit ec33cecdf0

View File

@ -28,7 +28,7 @@ void llvm_prof_linectr_start_file(const char *orig_filename) {
/* Emit data about a counter to the data file. */
void llvm_prof_linectr_emit_counter(const char *dir, const char *file,
uint32_t line, uint32_t column,
int64_t *counter) {
uint64_t *counter) {
printf("%s/%s:%u:%u %lu\n", dir, file, line, column, *counter);
}