Commit 1bb398f4 authored by obscuren's avatar obscuren

Sign ext

parent 3f90f7c8
...@@ -2,8 +2,6 @@ package ethutil ...@@ -2,8 +2,6 @@ package ethutil
import "math/big" import "math/big"
var MaxInt256 *big.Int = BigD(Hex2Bytes("ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"))
// Big pow // Big pow
// //
// Returns the power of two big integers // Returns the power of two big integers
......
...@@ -394,7 +394,7 @@ func (self *DebugVm) RunClosure(closure *Closure) (ret []byte, err error) { ...@@ -394,7 +394,7 @@ func (self *DebugVm) RunClosure(closure *Closure) (ret []byte, err error) {
stack.Push(base) stack.Push(base)
case SIGNEXTEND: case SIGNEXTEND:
back := stack.Pop().Uint64() back := stack.Pop().Uint64()
if back.Cmp(big.NewInt(31)) < 0 { if back < 31 {
bit := uint(back*8 + 7) bit := uint(back*8 + 7)
num := stack.Pop() num := stack.Pop()
mask := new(big.Int).Lsh(ethutil.Big1, bit) mask := new(big.Int).Lsh(ethutil.Big1, bit)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment