Skip to content

Commit

Permalink
Remove unneccesary #ifdefs
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7214 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
lattner committed Jul 21, 2003
1 parent 51577e5 commit 432312d
Showing 1 changed file with 6 additions and 12 deletions.
18 changes: 6 additions & 12 deletions runtime/libtrace/tracelib.c
Original file line number Diff line number Diff line change
@@ -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>
Expand All @@ -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 */

Expand Down

0 comments on commit 432312d

Please sign in to comment.