# HG changeset patch # User Doug Simon # Date 1340107797 -7200 # Node ID a4765b93eb96b1b6151569a189e88504246b94f4 # Parent 1f263f152cdac0ccf252ceaf4b203dff8d9245e6 fixed bug in call to verifyOops stub - was using-32 bit move instead of 64-bit move diff -r 1f263f152cda -r a4765b93eb96 graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/target/AMD64VerifyOopStubCallOp.java --- a/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/target/AMD64VerifyOopStubCallOp.java Tue Jun 19 13:25:18 2012 +0200 +++ b/graal/com.oracle.graal.hotspot/src/com/oracle/graal/hotspot/target/AMD64VerifyOopStubCallOp.java Tue Jun 19 14:09:57 2012 +0200 @@ -49,7 +49,7 @@ // r13: (in) object if (object != AMD64.r13) { masm.push(AMD64.r13); - masm.movl(AMD64.r13, object); + masm.movq(AMD64.r13, object); } AMD64Call.directCall(tasm, masm, HotSpotGraalRuntime.getInstance().getConfig().verifyOopStub, info); if (object != AMD64.r13) {