Skip to content

Commit de4ab65

Browse files
committed
temp commit - review comments
1 parent 65cba4b commit de4ab65

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

compiler/codegen/Relocation.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -424,17 +424,17 @@ class ExternalRelocation : public TR::Relocation
424424
virtual bool isExternalRelocation() { return true; }
425425

426426
static const char *getName(TR_ExternalRelocationTargetKind k) {return _externalRelocationTargetKindNames[k];}
427-
static uintptr_t getGlobalValue(uint32_t g)
427+
static uintptr_t getGlobalValue(uint32_t g)
428428
{
429429
TR_ASSERT(g >= 0 && g < TR_NumGlobalValueItems, "invalid index for global item");
430430
return _globalValueList[g];
431431
}
432-
static const void setGlobalValue(uint32_t g, uintptr_t v)
432+
static void setGlobalValue(uint32_t g, uintptr_t v)
433433
{
434434
TR_ASSERT(g >= 0 && g < TR_NumGlobalValueItems, "invalid index for global item");
435435
_globalValueList[g] = v;
436436
}
437-
static const char * nameOfGlobal(uint32_t g)
437+
static const char *nameOfGlobal(uint32_t g)
438438
{
439439
TR_ASSERT(g >= 0 && g < TR_NumGlobalValueItems, "invalid index for global item");
440440
return _globalValueNames[g];

compiler/optimizer/OrderBlocks.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -1256,7 +1256,7 @@ bool TR_OrderBlocks::peepHoleBranchToLoopHeader(TR::CFG *cfg, TR::Block *block,
12561256
// apply peephole optimizations to blocks that end in a branch and branch around a single goto
12571257
void TR_OrderBlocks::peepHoleBranchAroundSingleGoto(TR::CFG *cfg, TR::Block *block, const char *title)
12581258
{
1259-
TR_ASSERT(block->endsInBranch(), "peepHoleBranchBlock called on block that doesn't end in a branch!");
1259+
TR_ASSERT(block->endsInBranch(), "peepHoleBranchAroundSingleGoto called on block that doesn't end in a branch!");
12601260
TR::Node *branchNode = block->getLastRealTreeTop()->getNode();
12611261
TR::TreeTop *takenEntry = branchNode->getBranchDestination();
12621262
TR::Block *takenBlock = takenEntry->getNode()->getBlock();

0 commit comments

Comments
 (0)