mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-04 06:15:24 +00:00
83a5a82b19
under gcc 3.4. In particular, this fixes some places where an enumerated type is assumed to be the same width as an int (which the standard doesn't guarantee and gcc 3.4 now enforces). For full details, see the log for the jdk14 equivalent changes.
23 lines
578 B
C++
23 lines
578 B
C++
$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:
|