-
Notifications
You must be signed in to change notification settings - Fork 106
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
branch less than unsigned #2860
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #2860 +/- ##
==========================================
- Coverage 72.19% 72.15% -0.05%
==========================================
Files 259 259
Lines 61488 61513 +25
==========================================
- Hits 44393 44386 -7
- Misses 17095 17127 +32 ☔ View full report in Codecov by Sentry. |
|
||
let rd_scratch = env.alloc_scratch(); | ||
let less_than = unsafe { env.test_less_than(&local_rs1, &local_rs2, rd_scratch) }; | ||
// debug!("less_than: {:?}", less_than); |
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.
Can you remove it 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.
see comments
let local_rs1 = env.read_register(&rs1); | ||
let local_rs2 = env.read_register(&rs2); | ||
|
||
let rd_scratch = env.alloc_scratch(); |
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.
Can we keep it in the scope of less_than
, please?
76ba34a
to
5efc2f8
Compare
No description provided.