 Chromium Code Reviews
 Chromium Code Reviews Issue 6499015:
  Make sure we always have room for patching the reloc info during lazy deoptim...  (Closed) 
  Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
    
  
    Issue 6499015:
  Make sure we always have room for patching the reloc info during lazy deoptim...  (Closed) 
  Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/| Index: src/ia32/assembler-ia32.cc | 
| =================================================================== | 
| --- src/ia32/assembler-ia32.cc (revision 6782) | 
| +++ src/ia32/assembler-ia32.cc (working copy) | 
| @@ -2607,8 +2607,8 @@ | 
| } | 
| -void Assembler::RecordComment(const char* msg) { | 
| - if (FLAG_code_comments) { | 
| +void Assembler::RecordComment(const char* msg, bool force) { | 
| + if (FLAG_code_comments || force) { | 
| EnsureSpace ensure_space(this); | 
| RecordRelocInfo(RelocInfo::COMMENT, reinterpret_cast<intptr_t>(msg)); | 
| } |