-
Notifications
You must be signed in to change notification settings - Fork 396
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove RegisterITF references from OMROptions #4007
Conversation
// Avaialble = 0x00008000, | ||
TR_TraceRegisterITFBuild = 0x00010000, | ||
// Available = 0x00020000, | ||
TR_TraceRegisterITFColour = 0x00040000, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The first of these fields (TR_TraceRegisterITFBasic
) can be safely removed. However, subsequent ones should stay and be commented out as // Available
. This allows us to keep track of which bits are available for future options.
// Avaialble = 0x00008000,
// Avaialble = 0x00010000,
// Available = 0x00020000,
// Avaialble = 0x00040000,
@@ -1049,7 +1049,14 @@ enum TR_CompilationOptions | |||
// | |||
TR_TraceLRAResults = 0x00000800, | |||
// Available = 0x00001000, | |||
|
|||
|
|||
// Register ITF tracing option word |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This comment is no longer relevant.
@nidhi1605 can you please squash the commits together? |
Fixes eclipse-omr#3961 Signed-off-by: Nidhi Gupta <itsnidhi16@gmail.com>
46df1d6
to
3bb056b
Compare
I have squashed the commits together, @Leonardo2718 could you please review this? |
@genie-omr build all |
@Leonardo2718 , could you sign off on these changes please? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
Fixes #3961
Signed-off-by: Nidhi Gupta itsnidhi16@gmail.com