Revision: 21847
Author: [email protected]
Date: Fri Jun 13 16:56:50 2014 UTC
Log: Fix x87 compile
[email protected]
LOG=n
BUG=none
Review URL: https://codereview.chromium.org/337713003
http://code.google.com/p/v8/source/detail?r=21847
Modified:
/branches/bleeding_edge/src/x87/disasm-x87.cc
=======================================
--- /branches/bleeding_edge/src/x87/disasm-x87.cc Fri Jun 13 16:43:27 2014
UTC
+++ /branches/bleeding_edge/src/x87/disasm-x87.cc Fri Jun 13 16:56:50 2014
UTC
@@ -1645,7 +1645,7 @@
int outp = 0;
// Instruction bytes.
for (byte* bp = instr; bp < data; bp++) {
- outp += v8::internal:::SNPrintF(out_buffer + outp, "%02x", *bp);
+ outp += v8::internal::SNPrintF(out_buffer + outp, "%02x", *bp);
}
for (int i = 6 - instr_len; i >= 0; i--) {
outp += v8::internal::SNPrintF(out_buffer + outp, " ");
--
--
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/d/optout.