-
Notifications
You must be signed in to change notification settings - Fork 720
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 getRegisterSaveDescription from metadata #7334
base: master
Are you sure you want to change the base?
Conversation
@@ -1469,8 +1465,6 @@ createMethodMetaData( | |||
sizeOfStackAtlasInBytes, | |||
nonmergeableBCI); | |||
|
|||
data->registerSaveDescription = comp->cg()->getRegisterSaveDescription(); | |||
|
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 is still needed. This is a different "registerSaveDescription" that's used to describe registers preserved in the prologue.
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 may very well be the cause of your CI failures.
Signed-off-by: Aidan Ha <qbha@edu.uwaterloo.ca>
Signed-off-by: Aidan Ha <qbha@edu.uwaterloo.ca>
You'll need to rebase to pick up the |
Can one of the admins verify this patch? |
From #7256 we can remove the registerSaveDescription class member, as this is the only consumer of the RSD from the Instruction class, which is not set anywhere and is slated for removal in #7203.
Downstream relative to eclipse-omr/omr#4379