From: Chris Lattner Date: Mon, 21 Jul 2003 19:23:31 +0000 (+0000) Subject: Remove unneccesary #ifdefs X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=432312d8bf3242cd6f6af4168f7b6410f6ee6895;p=oota-llvm.git Remove unneccesary #ifdefs git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7214 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/runtime/libtrace/tracelib.c b/runtime/libtrace/tracelib.c index 537917e4acb..73190244bfd 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 @@ -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 */