-
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
Small fixed error in code #51821
Small fixed error in code #51821
Conversation
If def DISPLAY_SIZES = 1 in jit.h, then gives and error
If def DISPLAY_SIZES = 1, gives an error
because of intersection of names "dataSize" between "compiler.h" and in "codegenarm64.cpp"
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.
Fixed the type declaration for dataSize(because of 2523-2524 line doesn't see the declaration of this variable in "codegencommon.cpp"). Correct me, if i'm wrong
Is there an issue if we move
size_t dataSize = GetEmitter()->emitDataSize();
from genEmitMachineCode
to the next function instead of declaring it globally?
and revert eDataSize after.
transfer local declaration for dataSize
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, thank you for restoring CALL_ARG_STATS
and DISPLAY_SIZES
.
cc @dotnet/jit-contrib |
The failures are unrelated, covered by https://statics.teams.cdn.office.net/evergreen-assets/safelinks/1/atp-safelinks.html |
If define CALL_ARG_STATS = 1 and DISPLAY_SIZES = 1 in "jit.h", then will be compilation errors