Merge request https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/1163 was reviewed by Gedare Bloom
-- Gedare Bloom started a new discussion on testsuites/validation/tc-timecounter-install.c: https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/1163#note_147518 > { > - *adjustment = -(( (int64_t) 5000 ) << 32); > + *adjustment = -( (int64_t) 5000 << 32 ); I'm confused, the removal of the parens should not be changing the operator precedence, so there shouldn't be any difference between these two lines. In both cases, the negation is outside of the shift. How was this causing a problem for you? -- View it on GitLab: https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/1163 You're receiving this email because of your account on gitlab.rtems.org.
_______________________________________________ bugs mailing list [email protected] http://lists.rtems.org/mailman/listinfo/bugs
