aboutsummaryrefslogtreecommitdiffstats
path: root/libsolidity/codegen/CompilerUtils.h
diff options
context:
space:
mode:
authorchriseth <chris@ethereum.org>2018-05-02 22:50:15 +0800
committerGitHub <noreply@github.com>2018-05-02 22:50:15 +0800
commita856135bbf709d17732ce610e086c2300783b0a9 (patch)
treec52cc5f5c2b7f263b18ac78ef3cc3760155a4726 /libsolidity/codegen/CompilerUtils.h
parentde2c8fd684dd7c2a29460f64ffc891f1d6353cc8 (diff)
parent971941b3f6402665662d85eb9b31060f0ae230fb (diff)
downloaddexon-solidity-a856135bbf709d17732ce610e086c2300783b0a9.tar
dexon-solidity-a856135bbf709d17732ce610e086c2300783b0a9.tar.gz
dexon-solidity-a856135bbf709d17732ce610e086c2300783b0a9.tar.bz2
dexon-solidity-a856135bbf709d17732ce610e086c2300783b0a9.tar.lz
dexon-solidity-a856135bbf709d17732ce610e086c2300783b0a9.tar.xz
dexon-solidity-a856135bbf709d17732ce610e086c2300783b0a9.tar.zst
dexon-solidity-a856135bbf709d17732ce610e086c2300783b0a9.zip
Merge pull request #3797 from ethereum/shift-constantinople
Use native shift instructions on Constantinople
Diffstat (limited to 'libsolidity/codegen/CompilerUtils.h')
-rw-r--r--libsolidity/codegen/CompilerUtils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libsolidity/codegen/CompilerUtils.h b/libsolidity/codegen/CompilerUtils.h
index 476a7559..8e3a8a5d 100644
--- a/libsolidity/codegen/CompilerUtils.h
+++ b/libsolidity/codegen/CompilerUtils.h
@@ -254,7 +254,7 @@ public:
/// Helper function to shift top value on the stack to the right.
/// Stack pre: <value> <shift_by_bits>
/// Stack post: <shifted_value>
- void rightShiftNumberOnStack(unsigned _bits, bool _isSigned = false);
+ void rightShiftNumberOnStack(unsigned _bits);
/// Appends code that computes tha Keccak-256 hash of the topmost stack element of 32 byte type.
void computeHashStatic();