Skip to content

Commit

Permalink
Merge pull request #4528 from keithc-ca/count
Browse files Browse the repository at this point in the history
Fix mis-spellings of 'count'
  • Loading branch information
Leonardo2718 authored Nov 1, 2019
2 parents 5086b80 + 546e9c3 commit 10f0b5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion compiler/control/OMROptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ TR::OptionTable OMR::Options::_jitOptions[] = {
{"disableTrivialBlockExtension", "O\tdisable trivial block extension", TR::Options::disableOptimization, trivialBlockExtension, 0, "P"},
{"disableTrivialDeadBlockRemoval", "O\tdisable trivial dead block removal ", SET_OPTION_BIT(TR_DisableTrivialDeadBlockRemover), "F"},
{"disableTrivialDeadTreeRemoval", "O\tdisable trivial dead tree removal", TR::Options::disableOptimization, trivialDeadTreeRemoval, 0, "P"},
{"disableUncountedUnrolls", "O\tdisable GLU from unrolling uncoutned loops ",SET_OPTION_BIT(TR_DisableUncountedUnrolls), "F"},
{"disableUncountedUnrolls", "O\tdisable GLU from unrolling uncounted loops ",SET_OPTION_BIT(TR_DisableUncountedUnrolls), "F"},
{"disableUnsafe", "O\tdisable code to inline Unsafe natives", SET_OPTION_BIT(TR_DisableUnsafe), "F"},
{"disableUnsafeFastPath", "O\tdisable unsafe fast path", TR::Options::disableOptimization, unsafeFastPath, 0, "P"}, // Java specific option
{"disableUpdateAOTBytesSize", "M\tDon't send VM size of bodies that could have been AOT'd if the SCC wasn't full", SET_OPTION_BIT(TR_DisableUpdateAOTBytesSize), "F", NOT_IN_SUBSET},
Expand Down
2 changes: 1 addition & 1 deletion compiler/x/codegen/OMRCodeGenerator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2867,7 +2867,7 @@ uint8_t *OMR::X86::CodeGenerator::generatePadding(uint8_t *cursor,
TR::DebugCounter::incStaticDebugCounter(self()->comp(), "nopInst/-1/unknown");
}
}
// End -- Static debug coutners to track nop generation
// End -- Static debug counters to track nop generation
TR_ASSERT(cursor == desiredReturnValue, "Must produce the correct amount of padding");
return cursor;
}
Expand Down

0 comments on commit 10f0b5c

Please sign in to comment.