[llvm-commits] CVS: llvm/runtime/GC/SemiSpace/semispace.c
Alkis Evlogimenos
alkis at cs.uiuc.edu
Sun May 23 18:05:03 PDT 2004
Changes in directory llvm/runtime/GC/SemiSpace:
semispace.c updated: 1.1 -> 1.2
---
Log message:
Eliminate warnings
---
Diffs of the changes: (+1 -1)
Index: llvm/runtime/GC/SemiSpace/semispace.c
diff -u llvm/runtime/GC/SemiSpace/semispace.c:1.1 llvm/runtime/GC/SemiSpace/semispace.c:1.2
--- llvm/runtime/GC/SemiSpace/semispace.c:1.1 Sun May 23 16:25:45 2004
+++ llvm/runtime/GC/SemiSpace/semispace.c Sun May 23 18:02:35 2004
@@ -86,7 +86,7 @@
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() {
More information about the llvm-commits
mailing list