diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-14 18:33:48 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2006-10-14 18:33:48 +0800 |
commit | 1b3327761c8bcb98d89b529daeae9600844b4361 (patch) | |
tree | 0be1cd4eb5fec6661da4798906b0d9bd522e794f /java/jdk13/files/patch-shared.hpp | |
parent | a65aedbb59fd9dfb33a4633611777da99ec4dcd5 (diff) | |
download | marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.gz marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.bz2 marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.lz marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.xz marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.tar.zst marcuscom-ports-1b3327761c8bcb98d89b529daeae9600844b4361.zip |
Clean out MarcusCom after the big import into ports.
Next stop, GNOME 2.17.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@7799 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, 0 insertions, 34 deletions
diff --git a/java/jdk13/files/patch-shared.hpp b/java/jdk13/files/patch-shared.hpp deleted file mode 100644 index d7211f301..000000000 --- a/java/jdk13/files/patch-shared.hpp +++ /dev/null @@ -1,34 +0,0 @@ -$FreeBSD$ - ---- ../../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; - }; - - |