@@ -424,17 +424,17 @@ class ExternalRelocation : public TR::Relocation
424
424
virtual bool isExternalRelocation () { return true ; }
425
425
426
426
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)
428
428
{
429
429
TR_ASSERT (g >= 0 && g < TR_NumGlobalValueItems, " invalid index for global item" );
430
430
return _globalValueList[g];
431
431
}
432
- static void setGlobalValue (uint32_t g, uintptr_t v)
432
+ static void setGlobalValue (uint32_t g, uintptr_t v)
433
433
{
434
434
TR_ASSERT (g >= 0 && g < TR_NumGlobalValueItems, " invalid index for global item" );
435
435
_globalValueList[g] = v;
436
436
}
437
- static char * nameOfGlobal (uint32_t g)
437
+ static const char *nameOfGlobal (uint32_t g)
438
438
{
439
439
TR_ASSERT (g >= 0 && g < TR_NumGlobalValueItems, " invalid index for global item" );
440
440
return _globalValueNames[g];
@@ -443,12 +443,12 @@ class ExternalRelocation : public TR::Relocation
443
443
private:
444
444
uint8_t *_targetAddress;
445
445
uint8_t *_targetAddress2;
446
- TR::IteratedExternalRelocation *_relocationRecord;
446
+ TR::IteratedExternalRelocation *_relocationRecord;
447
447
TR_ExternalRelocationTargetKind _kind;
448
448
static const char *_externalRelocationTargetKindNames[TR_NumExternalRelocationKinds];
449
449
static uintptr_t _globalValueList[TR_NumGlobalValueItems];
450
450
static uint8_t _globalValueSizeList[TR_NumGlobalValueItems];
451
- static char *_globalValueNames[TR_NumGlobalValueItems];
451
+ static const char *_globalValueNames[TR_NumGlobalValueItems];
452
452
};
453
453
454
454
class ExternalOrderedPair32BitRelocation : public TR ::ExternalRelocation
0 commit comments