Skip to content

Commit 5097283

Browse files
committed
Remove option to specify compressed pointers
This option was deprecated, and currently does nothing. Now that all downstream consumers have been updated, stop supporting the option entirely. Signed-off-by: Andrew Young <[email protected]>
1 parent d88c756 commit 5097283

File tree

2 files changed

+0
-24
lines changed

2 files changed

+0
-24
lines changed

configure

-18
Original file line numberDiff line numberDiff line change
@@ -873,8 +873,6 @@ enable_OMR_ARCH_X86
873873
enable_OMR_ARCH_S390
874874
enable_OMR_ARCH_RISCV
875875
enable_OMR_ENV_DATA64
876-
enable_OMR_GC_COMPRESSED_POINTERS
877-
enable_OMR_GC_FULL_POINTERS
878876
enable_OMR_PORT_CAN_RESERVE_SPECIFIC_ADDRESS
879877
enable_OMR_THR_FORK_SUPPORT
880878
enable_OMR_THR_THREE_TIER_LOCKING
@@ -1649,10 +1647,6 @@ Optional Features:
16491647
--enable-OMR_ARCH_S390
16501648
--enable-OMR_ARCH_RISCV
16511649
--enable-OMR_ENV_DATA64
1652-
--enable-OMR_GC_COMPRESSED_POINTERS
1653-
Enable OMR_GC_COMPRESSED_POINTERS
1654-
--enable-OMR_GC_FULL_POINTERS
1655-
Enable OMR_GC_FULL_POINTERS
16561650
--enable-OMR_PORT_CAN_RESERVE_SPECIFIC_ADDRESS
16571651
16581652
--enable-OMR_THR_FORK_SUPPORT
@@ -5749,18 +5743,6 @@ fi
57495743
57505744
57515745
5752-
# TODO These options are no longer used, and will be deleted. User's should switch to use OMR_GC_POINTER_MODE.
5753-
# Check whether --enable-OMR_GC_COMPRESSED_POINTERS was given.
5754-
if test "${enable_OMR_GC_COMPRESSED_POINTERS+set}" = set; then :
5755-
enableval=$enable_OMR_GC_COMPRESSED_POINTERS;
5756-
fi
5757-
5758-
# Check whether --enable-OMR_GC_FULL_POINTERS was given.
5759-
if test "${enable_OMR_GC_FULL_POINTERS+set}" = set; then :
5760-
enableval=$enable_OMR_GC_FULL_POINTERS;
5761-
fi
5762-
5763-
57645746
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking OMR_GC_POINTER_MODE" >&5
57655747
$as_echo_n "checking OMR_GC_POINTER_MODE... " >&6; }
57665748

configure.ac

-6
Original file line numberDiff line numberDiff line change
@@ -432,12 +432,6 @@ OMRCFG_DEFINE_FLAG([OMR_ENV_DATA64],[],
432432
)]
433433
)
434434

435-
# TODO These options are no longer used, and will be deleted. User's should switch to use OMR_GC_POINTER_MODE.
436-
AC_ARG_ENABLE([OMR_GC_COMPRESSED_POINTERS],
437-
AS_HELP_STRING([--enable-OMR_GC_COMPRESSED_POINTERS], [Enable OMR_GC_COMPRESSED_POINTERS]))
438-
AC_ARG_ENABLE([OMR_GC_FULL_POINTERS],
439-
AS_HELP_STRING([--enable-OMR_GC_FULL_POINTERS], [Enable OMR_GC_FULL_POINTERS]))
440-
441435
AC_MSG_CHECKING([OMR_GC_POINTER_MODE])
442436
AC_ARG_VAR([OMR_GC_POINTER_MODE], [The mode of pointers. Must be "full", "compressed", or "mixed"])
443437
: ${OMR_GC_POINTER_MODE="full"}

0 commit comments

Comments
 (0)