Reviewers: rmcilroy_google,

Message:
Fixes the specific test. Running sanity checks...

Description:
A64: Remove an invalid assertion about the position of the reloc_info_writer.

Please review this at https://codereview.chromium.org/196413007/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+0, -4 lines):
  M src/a64/assembler-a64.cc


Index: src/a64/assembler-a64.cc
diff --git a/src/a64/assembler-a64.cc b/src/a64/assembler-a64.cc
index 305e698f5d69a5d8d580ea7a9f773cd98c01412e..721abab4b658233e8ca15da3fd4c7cf7e7b424d6 100644
--- a/src/a64/assembler-a64.cc
+++ b/src/a64/assembler-a64.cc
@@ -2645,9 +2645,6 @@ void Assembler::EmitVeneers(bool need_protection, int margin) {
   Label size_check;
   bind(&size_check);
   int veneer_pool_relocinfo_loc = pc_offset();
-#ifdef DEBUG
-  byte* reloc_writer_record_pos = reloc_info_writer.pos();
-#endif

   Label end;
   if (need_protection) {
@@ -2689,7 +2686,6 @@ void Assembler::EmitVeneers(bool need_protection, int margin) {
   }

   // Record the veneer pool size.
-  ASSERT(reloc_writer_record_pos == reloc_info_writer.pos());
   int pool_size = SizeOfCodeGeneratedSince(&size_check);
   RecordVeneerPool(veneer_pool_relocinfo_loc, pool_size);



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