From 756a06d4c239966ed68bbbe8ee4c6b6d02154c02 Mon Sep 17 00:00:00 2001 From: Matthias Baesken Date: Mon, 19 Dec 2022 16:20:12 +0000 Subject: [PATCH] 8299022: Linux ppc64le and s390x build issues after JDK-8160404 Reviewed-by: mdoerr, lucy --- src/hotspot/cpu/ppc/assembler_ppc.hpp | 2 +- src/hotspot/cpu/s390/assembler_s390.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hotspot/cpu/ppc/assembler_ppc.hpp b/src/hotspot/cpu/ppc/assembler_ppc.hpp index d32f2cbee36..7ea6d8e5876 100644 --- a/src/hotspot/cpu/ppc/assembler_ppc.hpp +++ b/src/hotspot/cpu/ppc/assembler_ppc.hpp @@ -95,7 +95,7 @@ class AddressLiteral { protected: // creation - AddressLiteral() : _address(NULL), _rspec(NULL) {} + AddressLiteral() : _address(NULL), _rspec() {} public: AddressLiteral(address addr, RelocationHolder const& rspec) diff --git a/src/hotspot/cpu/s390/assembler_s390.hpp b/src/hotspot/cpu/s390/assembler_s390.hpp index 4258f971078..a0a86a707dd 100644 --- a/src/hotspot/cpu/s390/assembler_s390.hpp +++ b/src/hotspot/cpu/s390/assembler_s390.hpp @@ -295,7 +295,7 @@ class AddressLiteral { protected: // creation - AddressLiteral() : _address(NULL), _rspec(NULL) {} + AddressLiteral() : _address(NULL), _rspec() {} public: AddressLiteral(address addr, RelocationHolder const& rspec)