Skip to content

Commit

Permalink
Merge pull request #7490 from keithc-ca/trace_all
Browse files Browse the repository at this point in the history
Correct the definition of TR_TraceAll
  • Loading branch information
0xdaryl authored Oct 11, 2024
2 parents 870b1c9 + d842dda commit 46f74f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/control/OMROptions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ enum TR_CompilationOptions
TR_TraceAliases = 0x00100000,
// Available = 0x00200000,
TR_TraceOptDetails = 0x00400000,
TR_TraceAll = 0x006F0000,
TR_TraceAll = TR_TraceBC | TR_TraceTrees | TR_TraceCG | TR_TraceOptDetails, // intentionally omits TR_TraceAliases

TR_CountOptTransformations = 0x00800000, // Must be same option word as TR_TraceOptDetails to allow performTransformation macros to do getAnyOption on them
TR_NoRecompile = 0x01000000,
Expand Down

0 comments on commit 46f74f6

Please sign in to comment.