From ec2658ca79b89a7ff1adb447177401c066521fdf Mon Sep 17 00:00:00 2001 From: Ayke van Laethem Date: Fri, 20 Dec 2019 13:37:37 +0100 Subject: [PATCH] interp: remove accidental debug print Accidentally left in the source in https://github.com/tinygo-org/tinygo/pull/787. --- interp/values.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/interp/values.go b/interp/values.go index c1fc23e3..bbd1b6af 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)}