diff options
Diffstat (limited to 'runtime/libtrace/tracelib.c')
-rw-r--r-- | runtime/libtrace/tracelib.c | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/runtime/libtrace/tracelib.c b/runtime/libtrace/tracelib.c index 537917e..7319024 100644 --- a/runtime/libtrace/tracelib.c +++ b/runtime/libtrace/tracelib.c @@ -1,9 +1,9 @@ -/*===-- Libraries/tracelib.c - Runtime routines for tracing -----*- C++ -*--=== - * - * Runtime routines for supporting tracing of execution - * for code generated by LLVM. - * - *===---------------------------------------------------------------------===*/ +/*===-- tracelib.c - Runtime routines for tracing ---------------*- C++ -*-===*\ +// +// Runtime routines for supporting tracing of execution for code generated by +// LLVM. +// +//===----------------------------------------------------------------------===*/ #include "tracelib.h" #include <assert.h> @@ -19,12 +19,6 @@ *===---------------------------------------------------------------------===*/ /* use #defines until we have inlining */ - -#ifndef sun -typedef uint32_t Pointer; /* int representation of a pointer */ -#else -typedef uint64_t Pointer; /* int representation of a pointer */ -#endif typedef uint32_t Index; /* type of index/size for hash table */ typedef uint32_t Generic; /* type of values stored in table */ |