< prev index next >

src/share/vm/asm/codeBuffer.cpp

Print this page
rev 7793 : 8073315: Enable gcc -Wtype-limits and fix upcoming issues.

@@ -924,13 +924,10 @@
 }
 
 void CodeBuffer::take_over_code_from(CodeBuffer* cb) {
   // Must already have disposed of the old blob somehow.
   assert(blob() == NULL, "must be empty");
-#ifdef ASSERT
-
-#endif
   // Take the new blob away from cb.
   set_blob(cb->blob());
   // Take over all the section pointers.
   for (int n = 0; n < (int)SECT_LIMIT; n++) {
     CodeSection* cb_sect   = cb->code_section(n);
< prev index next >