Fix warning on 64-bit machines

llvm-svn: 14902
This commit is contained in:
Brian Gaeke 2004-07-16 21:40:32 +00:00
parent b85c2522fa
commit 9905a2eb63
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ static void* llvm_gc_alloc_slow(unsigned Size) {
static void process_pointer(void **Root, void *Meta) {
printf("process_root[0x%X] = 0x%X\n", (unsigned) Root, (unsigned) *Root);
printf("process_root[0x%p] = 0x%p\n", (void*) Root, (void*) *Root);
}
void llvm_gc_collect() {