-
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
Experiment[Draft]- please do not review #99143
Experiment[Draft]- please do not review #99143
Conversation
Tagging subscribers to this area: @JulieLeeMSFT, @jakobbotsch Issue DetailsTesting out some conversion changes with #98858
|
90fdb49
to
e86f326
Compare
9972d2f
to
fe545cc
Compare
src/coreclr/jit/morph.cpp
Outdated
else if (srcType == TYP_DOUBLE && dstType == TYP_UINT) | ||
{ | ||
/*oper = gtNewCastNode(TYP_LONG, oper, false, TYP_LONG); | ||
tree = gtNewCastNode(TYP_INT, oper, false, TYP_UINT); |
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.
Why not invoke the helper directly? afaik, it takes care of the return type...
2169219
to
1952925
Compare
# Conflicts: # src/coreclr/inc/jithelpers.h # src/coreclr/jit/morph.cpp # src/coreclr/jit/utils.cpp # src/coreclr/jit/valuenum.cpp # src/coreclr/nativeaot/Runtime/MathHelpers.cpp # src/coreclr/vm/jithelpers.cpp
…hen converting to uint/ulong
1952925
to
0b39611
Compare
@@ -1735,10 +1738,13 @@ private static double DoubleReminder(double dividend, double divisor) | |||
return FMod(dividend, divisor); | |||
} | |||
|
|||
[StackTraceHidden] |
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.
Why do we want to hide the stack trace?
Testing out some conversion changes with #98858