Remove unneccesary #ifdefs
authorChris Lattner <sabre@nondot.org>
Mon, 21 Jul 2003 19:23:31 +0000 (19:23 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 21 Jul 2003 19:23:31 +0000 (19:23 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7214 91177308-0d34-0410-b5e6-96231b3b80d8

runtime/libtrace/tracelib.c

index 537917e4acba387e9d6aec2b892863719e458d0a..73190244bfd3269eaa42bc6082d5d08653691a58 100644 (file)
@@ -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>
  *===---------------------------------------------------------------------===*/
 
 /* 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 */