The counters are unsigned.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129380 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/runtime/libprofile/LineProfiling.c b/runtime/libprofile/LineProfiling.c
index 6e6fa19..4116ab9 100644
--- a/runtime/libprofile/LineProfiling.c
+++ b/runtime/libprofile/LineProfiling.c
@@ -28,7 +28,7 @@
 /* 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);
 }