From 6b6bf7a8a16c0aac3798100191fe5bf3ac656c68 Mon Sep 17 00:00:00 2001 From: o3hjj Date: Mon, 17 Feb 2020 09:24:48 -0400 Subject: [PATCH] Removed deprecated FrontEnd:getObjectAlignmentInBytes Removed deprecated FrontEnd getObjectAlignmentInBytes method. Closes: eclipse/openj9 #5904 Signed-off-by: Sean Moffatt --- compiler/env/FrontEnd.cpp | 10 +--------- compiler/env/FrontEnd.hpp | 3 +-- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/compiler/env/FrontEnd.cpp b/compiler/env/FrontEnd.cpp index eddfc9cdf73..0c0c6e454db 100644 --- a/compiler/env/FrontEnd.cpp +++ b/compiler/env/FrontEnd.cpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2019 IBM Corp. and others + * Copyright (c) 2000, 2020 IBM Corp. and others * * This program and the accompanying materials are made available under * the terms of the Eclipse Public License 2.0 which accompanies this @@ -128,14 +128,6 @@ uintptrj_t TR_FrontEnd::getOffsetOfDiscontiguousArraySizeField() { TR_UNIMPLEME uintptrj_t TR_FrontEnd::getOffsetOfIndexableSizeField() { TR_UNIMPLEMENTED(); return 0; } -int32_t -TR_FrontEnd::getObjectAlignmentInBytes() - { - TR_UNIMPLEMENTED(); - return 0; - } - - char * TR_FrontEnd::getFormattedName( char *buf, diff --git a/compiler/env/FrontEnd.hpp b/compiler/env/FrontEnd.hpp index 23814105b05..1dce3971ec5 100644 --- a/compiler/env/FrontEnd.hpp +++ b/compiler/env/FrontEnd.hpp @@ -1,5 +1,5 @@ /******************************************************************************* - * Copyright (c) 2000, 2019 IBM Corp. and others + * Copyright (c) 2000, 2020 IBM Corp. and others * * This program and the accompanying materials are made available under * the terms of the Eclipse Public License 2.0 which accompanies this @@ -194,7 +194,6 @@ class TR_FrontEnd : public TR_Uncopyable virtual int32_t getArraySpineShift(int32_t); virtual int32_t getArrayletMask(int32_t); virtual int32_t getArrayletLeafIndex(int32_t, int32_t); - virtual int32_t getObjectAlignmentInBytes(); virtual uintptrj_t getOffsetOfContiguousArraySizeField(); virtual uintptrj_t getOffsetOfDiscontiguousArraySizeField(); virtual uintptrj_t getObjectHeaderSizeInBytes();