diff options
Diffstat (limited to '')
-rw-r--r-- | java/jdk13/files/patch-bytecodes.hpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/java/jdk13/files/patch-bytecodes.hpp b/java/jdk13/files/patch-bytecodes.hpp new file mode 100644 index 000000000000..003ab81d3314 --- /dev/null +++ b/java/jdk13/files/patch-bytecodes.hpp @@ -0,0 +1,22 @@ +$FreeBSD$ + +--- ../../hotspot1.3.1/src/share/vm/interpreter/bytecodes.hpp 11 Jul 2001 21:33:21 -0000 1.1.1.1 ++++ ../../hotspot1.3.1/src/share/vm/interpreter/bytecodes.hpp 22 Nov 2004 17:19:42 -0000 +@@ -14,6 +14,7 @@ + + // CopyrightVersion 1.2 + ++#include <limits.h> + + // Bytecodes specifies all bytecodes used in the VM and + // provides utility functions to get bytecode attributes. +@@ -279,7 +280,8 @@ + // Platform specific JVM bytecodes + #include "incls/_bytecodes_pd.hpp.incl" + +- number_of_codes ++ number_of_codes, ++ WIDTH_HINT = INT_MAX + }; + + private: |