diff options
author | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-08-01 11:56:57 +0800 |
---|---|---|
committer | mezz <mezz@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-08-01 11:56:57 +0800 |
commit | 5e8e096d0d8101d3aa25bc737d9adbeb54fb2557 (patch) | |
tree | 056f998156adef4272de408bba26ba63e90e9799 /java/jdk13/files/patch-shared.hpp | |
parent | 9b5f741c5c4966e8faa9fda04d913fda39e0da93 (diff) | |
download | marcuscom-ports-5e8e096d0d8101d3aa25bc737d9adbeb54fb2557.tar marcuscom-ports-5e8e096d0d8101d3aa25bc737d9adbeb54fb2557.tar.gz marcuscom-ports-5e8e096d0d8101d3aa25bc737d9adbeb54fb2557.tar.bz2 marcuscom-ports-5e8e096d0d8101d3aa25bc737d9adbeb54fb2557.tar.lz marcuscom-ports-5e8e096d0d8101d3aa25bc737d9adbeb54fb2557.tar.xz marcuscom-ports-5e8e096d0d8101d3aa25bc737d9adbeb54fb2557.tar.zst marcuscom-ports-5e8e096d0d8101d3aa25bc737d9adbeb54fb2557.zip |
X11BASE -> LOCALBASE, gtk12 and mozilla live in LOCALBASE. Bump the
PORTREVISION.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6907 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'java/jdk13/files/patch-shared.hpp')
-rw-r--r-- | java/jdk13/files/patch-shared.hpp | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/java/jdk13/files/patch-shared.hpp b/java/jdk13/files/patch-shared.hpp new file mode 100644 index 000000000..0973d2f15 --- /dev/null +++ b/java/jdk13/files/patch-shared.hpp @@ -0,0 +1,34 @@ +$FreeBSD: ports/java/jdk13/files/patch-shared.hpp,v 1.1 2004/12/07 20:23:40 glewis Exp $ + +--- ../../hotspot1.3.1/src/share/vm/interpreter/shared.hpp 11 Jul 2001 21:33:22 -0000 1.1.1.1 ++++ ../../hotspot1.3.1/src/share/vm/interpreter/shared.hpp 22 Nov 2004 17:19:42 -0000 +@@ -35,15 +35,13 @@ + // to control the C++ namespace. + class OptoReg VALUE_OBJ_CLASS_SPEC { + public: +- enum Name { +- // Chunk 0 ++ typedef int Name; + #ifdef COMPILER2 +- Physical = AdlcVMDeps::Physical, // Start of physical regs ++ static const Name Physical = AdlcVMDeps::Physical; // Start of physical regs + #endif +- // A few oddballs at the edge of the world +- Special = -2, // All special (not allocated) values +- Bad = -1 // Not a register +- }; ++ // A few oddballs at the edge of the world ++ static const Name Special = -2; // All special (not allocated) values ++ static const Name Bad = -1; // Not a register + + // Increment a register number. As in: + // "for ( OptoReg::Name i; i=Control; i = add(i,1) ) ..." +@@ -64,7 +62,7 @@ + // when we do not yet know how big the frame will be. + class VMReg VALUE_OBJ_CLASS_SPEC { + public: +- enum Name { }; ++ typedef int Name; + }; + + |