* If hashing a pointer, cast it to a 64 bit number so gcc doesn't warn

* Don't put extra stuff after #endif

llvm-svn: 2671
This commit is contained in:
Chris Lattner 2002-05-20 21:15:30 +00:00
parent 6132157ab8
commit 008db290b8
2 changed files with 2 additions and 3 deletions

View File

@ -20,7 +20,7 @@
typedef int64_t Generic;
typedef uint64_t Index;
typedef ptrdiff_t Pointer;
typedef uint64_t Pointer;
/* Index IntegerHashFunc(const Generic value, const Index size) */
#define IntegerHashFunc(value, size) \
@ -262,7 +262,6 @@ HashPointerToSeqNum(char* ptr)
void
ReleasePointerSeqNum(char* ptr)
{ /* if a sequence number was assigned to this ptr, release it */
SequenceNumber seqnum;
if (SequenceNumberTable != NULL)
Delete(SequenceNumberTable, ptr);
}

View File

@ -37,4 +37,4 @@ extern void ReleasePointersPopSet();
/*===---------------------------------------------------------------------===*/
#endif _TEST_LIBRARIES_LIBINSTR_TRACELIB_
#endif