Revision: 22894
Author:   [email protected]
Date:     Wed Aug  6 04:30:06 2014 UTC
Log:      Fix arm64 compilation with clang.

[email protected]

Review URL: https://codereview.chromium.org/443823002
http://code.google.com/p/v8/source/detail?r=22894

Modified:
 /branches/bleeding_edge/src/arm64/disasm-arm64.cc
 /branches/bleeding_edge/src/utils.h

=======================================
--- /branches/bleeding_edge/src/arm64/disasm-arm64.cc Mon Aug 4 11:34:54 2014 UTC +++ /branches/bleeding_edge/src/arm64/disasm-arm64.cc Wed Aug 6 04:30:06 2014 UTC
@@ -1797,7 +1797,7 @@
     : converter_(converter) {}


-Disassembler::~Disassembler() {}
+Disassembler::~Disassembler() { USE(converter_); }


 int Disassembler::InstructionDecode(v8::internal::Vector<char> buffer,
=======================================
--- /branches/bleeding_edge/src/utils.h Mon Aug  4 11:34:54 2014 UTC
+++ /branches/bleeding_edge/src/utils.h Wed Aug  6 04:30:06 2014 UTC
@@ -425,7 +425,7 @@
   EmbeddedVector(const EmbeddedVector& rhs)
       : Vector<T>(rhs) {
     MemCopy(buffer_, rhs.buffer_, sizeof(T) * kSize);
-    set_start(buffer_);
+    this->set_start(buffer_);
   }

   EmbeddedVector& operator=(const EmbeddedVector& rhs) {

--
--
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.

Reply via email to