hotspot/src/share/vm/classfile/classFileStream.hpp
changeset 15102 0a86564e5f61
parent 8921 14bfe81f2a9d
child 22234 da823d78ad65
--- a/hotspot/src/share/vm/classfile/classFileStream.hpp	Mon Jan 07 15:32:51 2013 -0500
+++ b/hotspot/src/share/vm/classfile/classFileStream.hpp	Tue Jan 08 14:01:36 2013 -0500
@@ -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; }
 };