diff src/os_cpu/linux_x86/vm/os_linux_x86.cpp @ 5182:70aaaa83b93a

fixed gcc warning; added note to README_GRAAL about disabling the bootstrap step
author Doug Simon <doug.simon@oracle.com>
date Mon, 02 Apr 2012 12:19:18 +0200
parents 0654ee04b214
children 957c266d8bc5
line wrap: on
line diff
--- a/src/os_cpu/linux_x86/vm/os_linux_x86.cpp	Mon Apr 02 11:39:32 2012 +0200
+++ b/src/os_cpu/linux_x86/vm/os_linux_x86.cpp	Mon Apr 02 12:19:18 2012 +0200
@@ -313,7 +313,7 @@
           if (thread->thread_state() == _thread_in_Java) {
             // Throw a stack overflow exception.  Guard pages will be reenabled
             // while unwinding the stack.
-            if (WizardMode) tty->print("implicit: %08x%08x\n", ((long)pc) >> 32, pc);
+            if (WizardMode) tty->print("implicit: %08x%08x\n", ((long long)pc) >> 32, pc);
             stub = SharedRuntime::continuation_for_implicit_exception(thread, pc, SharedRuntime::STACK_OVERFLOW);
           } else {
             // Thread was in the vm or native code.  Return and try to finish.