diff src/share/vm/classfile/classFileStream.hpp @ 7482:989155e2d07a

Merge with hs25-b15.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Wed, 16 Jan 2013 01:34:24 +0100
parents ade95d680b42
children de6a9e811145
line wrap: on
line diff
--- a/src/share/vm/classfile/classFileStream.hpp	Tue Jan 15 18:54:02 2013 +0100
+++ b/src/share/vm/classfile/classFileStream.hpp	Wed Jan 16 01:34:24 2013 +0100
@@ -133,6 +133,11 @@
     _current += 2 * length;
   }
 
+  void skip_u4(int length, TRAPS);
+  void skip_u4_fast(int length) {
+    _current += 4 * length;
+  }
+
   // Tells whether eos is reached
   bool at_eos() const          { return _current == _buffer_end; }
 };