Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions evm/src/main/java/org/hyperledger/besu/evm/UInt256.java
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,6 @@ public UInt256 shr(final UInt256 shift) {
* @param fill value to prepend while shifting
* @return the result
*/
// TODO: check perf - wiring shiftRight callers with this one
private UInt256 sar0(final int shift, final long fill) {
long w3 = u3, w2 = u2, w1 = u1, w0 = u0;
if (shift == 256) {
Expand Down Expand Up @@ -781,7 +780,6 @@ public UInt256 shl(final UInt256 shift) {
* @param shift number of bits to shift
* @return the result
*/
// TODO: check perf - wiring shiftLeft callers with this one
private UInt256 shl0(final int shift) {
long w3 = u3, w2 = u2, w1 = u1, w0 = u0;
if (shift == 256) {
Expand Down