From a8a34764b2d09e75587fb035605535ea9f6b3fbb Mon Sep 17 00:00:00 2001 From: Serguei Spitsyn Date: Tue, 13 Nov 2018 13:42:39 -0800 Subject: [PATCH] 8213814: build error in jtreg test jvmti/GetLocalVariable Fix the build error by restoring the macro definitions for missed functions Reviewed-by: dcubed --- .../serviceability/jvmti/GetLocalVariable/libGetLocalVars.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/hotspot/jtreg/serviceability/jvmti/GetLocalVariable/libGetLocalVars.cpp b/test/hotspot/jtreg/serviceability/jvmti/GetLocalVariable/libGetLocalVars.cpp index 855335861e7..08a61427dde 100644 --- a/test/hotspot/jtreg/serviceability/jvmti/GetLocalVariable/libGetLocalVars.cpp +++ b/test/hotspot/jtreg/serviceability/jvmti/GetLocalVariable/libGetLocalVars.cpp @@ -89,6 +89,9 @@ DECL_TEST_FUNC(object, Object); DECL_TEST_INV_SLOT_FUNC(int, Int); DECL_TEST_INV_SLOT_FUNC(float, Float); +DECL_TEST_INV_SLOT_FUNC(long, Long); +DECL_TEST_INV_SLOT_FUNC(double, Double); +DECL_TEST_INV_SLOT_FUNC(object, Object); DECL_TEST_TYPE_MISMATCH_FUNC(int, Int); DECL_TEST_TYPE_MISMATCH_FUNC(float, Float);