Revision: 14607
Author: [email protected]
Date: Fri May 10 02:03:51 2013
Log: ARM: fix constant pool length emitted for disassembler.
[email protected]
Review URL: https://chromiumcodereview.appspot.com/14972007
http://code.google.com/p/v8/source/detail?r=14607
Modified:
/branches/bleeding_edge/src/arm/assembler-arm.cc
=======================================
--- /branches/bleeding_edge/src/arm/assembler-arm.cc Tue Apr 23 02:23:07
2013
+++ /branches/bleeding_edge/src/arm/assembler-arm.cc Fri May 10 02:03:51
2013
@@ -3000,7 +3000,8 @@
// Put down constant pool marker "Undefined instruction".
// The data size helps disassembly know what to print.
- emit(kConstantPoolMarker |
EncodeConstantPoolLength(size_after_marker));
+ emit(kConstantPoolMarker |
+ EncodeConstantPoolLength(size_after_marker / kPointerSize));
if (require_64_bit_align) {
emit(kConstantPoolMarker);
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.