@@ -301,17 +301,17 @@ class TR_RelocationRuntime {
301
301
virtual bool validateAOTHeader (TR_FrontEnd *fe, J9VMThread *curThread);
302
302
virtual OMRProcessorDesc getProcessorDescriptionFromSCC (J9VMThread *curThread);
303
303
304
- static uintptr_t getGlobalValue (uint32_t g)
304
+ static uintptr_t getGlobalValue (uint32_t g)
305
305
{
306
306
TR_ASSERT (g >= 0 && g < TR_NumGlobalValueItems, " invalid index for global item" );
307
307
return _globalValueList[g];
308
308
}
309
- static void setGlobalValue (uint32_t g, uintptr_t v)
309
+ static void setGlobalValue (uint32_t g, uintptr_t v)
310
310
{
311
311
TR_ASSERT (g >= 0 && g < TR_NumGlobalValueItems, " invalid index for global item" );
312
312
_globalValueList[g] = v;
313
313
}
314
- static const char * nameOfGlobal (uint32_t g)
314
+ static const char *nameOfGlobal (uint32_t g)
315
315
{
316
316
TR_ASSERT (g >= 0 && g < TR_NumGlobalValueItems, " invalid index for global item" );
317
317
return _globalValueNames[g];
@@ -385,10 +385,10 @@ class TR_RelocationRuntime {
385
385
TR_AotRelocationCleanUp _relocationStatus;
386
386
void relocationFailureCleanup ();
387
387
388
- static bool _globalValuesInitialized;
389
- static uintptr_t _globalValueList[TR_NumGlobalValueItems];
390
- static uint8_t _globalValueSizeList[TR_NumGlobalValueItems];
391
- static const char *_globalValueNames[TR_NumGlobalValueItems];
388
+ static bool _globalValuesInitialized;
389
+ static uintptr_t _globalValueList[TR_NumGlobalValueItems];
390
+ static uint8_t _globalValueSizeList[TR_NumGlobalValueItems];
391
+ static const char *_globalValueNames[TR_NumGlobalValueItems];
392
392
393
393
TR_RelocationErrorCode _reloErrorCode;
394
394
static const char *_reloErrorCodeNames[];
0 commit comments