Skip to content

Commit

Permalink
Update comment when excluded methods are compiled
Browse files Browse the repository at this point in the history
Issue eclipse-omr#5243
Signed-off-by: Kishor Patil<patil@ca.ibm.com>
  • Loading branch information
patilca authored and kbeaton2-UNB3035 committed Jun 23, 2020
1 parent a04c5d1 commit b911b54
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion compiler/ras/LimitFile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1326,7 +1326,12 @@ TR_Debug::methodSigCanBeCompiledOrRelocated(const char *methodSig, TR_FilterBST
{
if (compOrReloFilter->excludedMethodFilter)
{
// Excluded methods SHOULD be compiled in this case.
// The -Xjit:ifExcluded(...) option set is used to set alternate compile options for methods
// that are excluded from compilation. This can be useful for debugging timing-sensitive
// optimization bugs where dropping optimization levels can make problems go away.
//
// If there is an excludedMethodFilter set then excluded methods should be compiled
// using that option set.
//
found = true;
filter = compOrReloFilter->excludedMethodFilter;
Expand Down

0 comments on commit b911b54

Please sign in to comment.