diff options
author | Ayke van Laethem <[email protected]> | 2019-12-20 13:37:37 +0100 |
---|---|---|
committer | Ron Evans <[email protected]> | 2019-12-20 14:47:20 +0100 |
commit | ec2658ca79b89a7ff1adb447177401c066521fdf (patch) | |
tree | 4995002ac87a6008a73dff9fa12132b937e87ac9 | |
parent | 2004555fe21a2b0af85989f4daeb143a5a123b33 (diff) | |
download | tinygo-ec2658ca79b89a7ff1adb447177401c066521fdf.tar.gz tinygo-ec2658ca79b89a7ff1adb447177401c066521fdf.zip |
interp: remove accidental debug print
Accidentally left in the source in
https://github.com/tinygo-org/tinygo/pull/787.
-rw-r--r-- | interp/values.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/interp/values.go b/interp/values.go index c1fc23e3c..bbd1b6af1 100644 --- a/interp/values.go +++ b/interp/values.go @@ -367,8 +367,6 @@ func (v *MapValue) PutBinary(keyPtr, valPtr *LocalValue) { } } - keyPtr.Underlying.Dump() - println() if !keyPtr.Underlying.IsAConstantExpr().IsNil() { if keyPtr.Underlying.Opcode() == llvm.BitCast { keyPtr = &LocalValue{v.Eval, keyPtr.Underlying.Operand(0)} |