From: Alkis Evlogimenos Date: Sun, 23 May 2004 23:02:35 +0000 (+0000) Subject: Eliminate warnings X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=86f238230bd91dac64a0c2ae62bd2d903777fb5b;p=oota-llvm.git Eliminate warnings git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13704 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/runtime/GC/SemiSpace/semispace.c b/runtime/GC/SemiSpace/semispace.c index 3792f861d44..93327edc88a 100644 --- a/runtime/GC/SemiSpace/semispace.c +++ b/runtime/GC/SemiSpace/semispace.c @@ -86,7 +86,7 @@ static void* llvm_gc_alloc_slow(unsigned Size) { static void process_root(void **Root, void *Meta) { - printf("process_root[0x%X] = 0x%X\n", Root, *Root); + printf("process_root[0x%X] = 0x%X\n", (unsigned) Root, (unsigned) *Root); } void llvm_gc_collect() {