Skip to content

Commit

Permalink
Cleanup PPCArrayCmp remnants
Browse files Browse the repository at this point in the history
Remove remaining PPCArrayCmp references as it was
previously removed due to being dummied out.

Signed-off-by: Amarpreet Singh amarpreet1997@gmail.com
  • Loading branch information
singh264 committed Apr 12, 2021
1 parent 08aa879 commit 4f27f79
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 4 deletions.
3 changes: 1 addition & 2 deletions compiler/p/codegen/OMRCodeGenerator.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2000, 2020 IBM Corp. and others
* Copyright (c) 2000, 2021 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
Expand Down Expand Up @@ -347,7 +347,6 @@ class OMR_EXTENSIBLE CodeGenerator : public OMR::CodeGenerator
TR::SymbolReference &getForwardHalfWordArrayCopySymbolReference();
TR::SymbolReference &getReferenceArrayCopySymbolReference() { return *_symRefTab->findOrCreateRuntimeHelper(TR_PPCreferenceArrayCopy); }
TR::SymbolReference &getGeneralArrayCopySymbolReference() { return *_symRefTab->findOrCreateRuntimeHelper(TR_PPCgeneralArrayCopy); }
TR::SymbolReference &getArrayCmpVMXSymbolReference() { return *_symRefTab->findOrCreateRuntimeHelper(TR_PPCarrayCmpVMX); }
TR::SymbolReference &getArrayCmpLenVMXSymbolReference() { return *_symRefTab->findOrCreateRuntimeHelper(TR_PPCarrayCmpLenVMX); }
TR::SymbolReference &getArrayCmpScalarSymbolReference() { return *_symRefTab->findOrCreateRuntimeHelper(TR_PPCarrayCmpScalar); }
TR::SymbolReference &getArrayCmpLenScalarSymbolReference() { return *_symRefTab->findOrCreateRuntimeHelper(TR_PPCarrayCmpLenScalar); }
Expand Down
1 change: 0 additions & 1 deletion compiler/ras/Debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3936,7 +3936,6 @@ TR_Debug::getRuntimeHelperName(int32_t index)
case TR_PPCarrayAnd: return "_arrayand";
case TR_PPCarrayCmp: return "_arraycmp";
case TR_PPCoverlapArrayCopy: return "overlapArrayCopy";
case TR_PPCarrayCmpVMX: return "__arrayCmpVMX";
case TR_PPCarrayCmpLenVMX: return "__arrayCmpLenVMX";
case TR_PPCarrayCmpScalar: return "__arrayCmpScalar";
case TR_PPCarrayCmpLenScalar: return "__arrayCmpLenScalar";
Expand Down
1 change: 0 additions & 1 deletion compiler/runtime/Helpers.inc
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,6 @@ SETVAL(TR_PPCarrayOr,TR_FSRH+61)
SETVAL(TR_PPCarrayAnd,TR_FSRH+62)
SETVAL(TR_PPCarrayCmp,TR_FSRH+63)
SETVAL(TR_PPCoverlapArrayCopy,TR_FSRH+64)
SETVAL(TR_PPCarrayCmpVMX,TR_FSRH+66)
SETVAL(TR_PPCarrayCmpLenVMX,TR_FSRH+67)
SETVAL(TR_PPCarrayCmpScalar,TR_FSRH+68)
SETVAL(TR_PPCarrayCmpLenScalar,TR_FSRH+69)
Expand Down

0 comments on commit 4f27f79

Please sign in to comment.