-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Additional work for x86 support for NativeAOT #68130
Conversation
Tagging subscribers to this area: @JulieLeeMSFT Issue DetailsRelated to #86573
|
@@ -1834,7 +1834,7 @@ bool Compiler::fgCanCompactBlocks(BasicBlock* block, BasicBlock* bNext) | |||
return false; | |||
} | |||
|
|||
#if defined(TARGET_ARM) | |||
#if defined(FEATURE_EH_FUNCLETS) && defined(TARGET_ARM) |
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.
What is this trying to achieve? FEATURE_EH_FUNCLETS
is always enabled for ARM, so this change is no-op.
@@ -31,9 +31,7 @@ | |||
#include "bitvector.h" | |||
#include "gcinfotypes.h" | |||
|
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 won't work for regular CoreCLR. Switching regular CoreCLR to use USE_GC_INFO_DECODER
would be a ton more work.
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.
Please forgive my ignorance. My pattern matching sometimes works like monkey typing on typewriter. I not fully understand boundaries, so I occasionally overstep. Do not want to do more work then necessary.
@kant2002 could you please address Jan's comment in order to move forward? Thanks. |
Moved to @agocke per offline discussion. |
This pull request has been automatically marked |
This pull request will now be closed since it had been marked |
Related to #86573