Remove dead code from Perl_gv_stashpvn().
authorNicholas Clark <nick@ccl4.org>
Fri, 8 Oct 2010 20:33:29 +0000 (21:33 +0100)
committerNicholas Clark <nick@ccl4.org>
Fri, 8 Oct 2010 20:37:59 +0000 (21:37 +0100)
commitb4dd66232df8f0d1c00796970dec7fc37fbe9edf
treefeaa443d42eec3005b98d945c3374ba4b4896b5a
parent899de42e58b123b7d2b0fa4df5354d07472913bc
Remove dead code from Perl_gv_stashpvn().

GvHV() and HvNAME() will both always already be set, as gv_fetchpvn_flags()
will initialise these as it walks the string in its initial loop to locate the
correct stash, then return early because name == name_end.

This code has been dead since it was added in 5.000.
gv.c