From: Ian Lance Taylor Date: Sun, 20 Jul 2014 19:20:12 +0000 (+0000) Subject: runtime: remove unused variable X-Git-Tag: releases/gcc-5.1.0~6186 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d5d0580e649fd7f2a43d11c5ee5cb72554d33bc0;p=thirdparty%2Fgcc.git runtime: remove unused variable This variable is unused apparently as a result of local changes. gccgo accepts this variable declaration, but other frontends may not. From-SVN: r212873 --- diff --git a/libgo/go/reflect/value.go b/libgo/go/reflect/value.go index cac083304ca0..c390b8e2d6c1 100644 --- a/libgo/go/reflect/value.go +++ b/libgo/go/reflect/value.go @@ -434,13 +434,12 @@ func (v Value) call(op string, in []Value) []Value { // Get function pointer, type. t := v.typ var ( - fn unsafe.Pointer - rcvr Value - rcvrtype *rtype + fn unsafe.Pointer + rcvr Value ) if v.flag&flagMethod != 0 { rcvr = v - rcvrtype, t, fn = methodReceiver(op, v, int(v.flag)>>flagMethodShift) + _, t, fn = methodReceiver(op, v, int(v.flag)>>flagMethodShift) } else if v.flag&flagIndir != 0 { fn = *(*unsafe.Pointer)(v.ptr) } else {