diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2004-12-17 07:02:51 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2004-12-17 07:02:51 +0000 |
commit | 55f5e15a50c8a7a0434cad4e9d3a2e34aca0c753 (patch) | |
tree | c4cc388f7c7996fa61df230fa2beb40b0f0ee494 /java/jdk16/files/patch-interpreter_shared.hpp | |
parent | Switch from BROKEN to IGNORE to match other ports in this category. (diff) |
. Update to patchset 7.
. Fix a permissions problem with the plugins directory.
Approved by: phantom (maintainer)
Notes
Notes:
svn path=/head/; revision=124268
Diffstat (limited to 'java/jdk16/files/patch-interpreter_shared.hpp')
-rw-r--r-- | java/jdk16/files/patch-interpreter_shared.hpp | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/java/jdk16/files/patch-interpreter_shared.hpp b/java/jdk16/files/patch-interpreter_shared.hpp deleted file mode 100644 index 25feb1ff8da9..000000000000 --- a/java/jdk16/files/patch-interpreter_shared.hpp +++ /dev/null @@ -1,38 +0,0 @@ -$FreeBSD$ - ---- ../../hotspot/src/share/vm/interpreter/shared.hpp 22 Oct 2003 23:05:05 -0000 1.1.1.2 -+++ ../../hotspot/src/share/vm/interpreter/shared.hpp 10 Oct 2004 05:03:55 -0000 -@@ -41,19 +41,17 @@ - // 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 -- }; -+ 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) ) ..." -- static Name add( Name x, int y ) { return Name(x+y); } -+ static Name add( Name x, int y ) { return (x+y); } - - // (We would like to have an operator+ for RegName, but it is not - // a class, so this would be illegal in C++.) -@@ -70,7 +68,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; - }; - - |