summaryrefslogtreecommitdiff
path: root/runtime
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-07-21 19:23:31 +0000
committerChris Lattner <sabre@nondot.org>2003-07-21 19:23:31 +0000
commit432312d8bf3242cd6f6af4168f7b6410f6ee6895 (patch)
tree7090bc41b0260dc380c64052c4dbb2b477f34282 /runtime
parent51577e5f3a957c0e2807beddf5f7a39d512decc7 (diff)
downloadllvm-432312d8bf3242cd6f6af4168f7b6410f6ee6895.tar.gz
llvm-432312d8bf3242cd6f6af4168f7b6410f6ee6895.tar.bz2
llvm-432312d8bf3242cd6f6af4168f7b6410f6ee6895.tar.xz
Remove unneccesary #ifdefs
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7214 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime')
-rw-r--r--runtime/libtrace/tracelib.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/runtime/libtrace/tracelib.c b/runtime/libtrace/tracelib.c
index 537917e4ac..73190244bf 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 */