This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
pp.c pp_split GvAVn can't return NULL
authorDaniel Dragan <bulk88@hotmail.com>
Mon, 5 Jan 2015 03:42:49 +0000 (22:42 -0500)
committerFather Chrysostomos <sprout@cpan.org>
Mon, 5 Jan 2015 14:30:32 +0000 (06:30 -0800)
commitbf7d93eacd037b880856f9dc7c6429382c391cef
tree395b5be1c4f184af9f65bc475a15ab15e57a9f51
parenta462fa007d5b4c4ff4de1db82dcd58567814f76b
pp.c pp_split GvAVn can't return NULL

clang optimized the function call free branch of GvAVn to skip the
"if (ary)" test, but the function call creation branch also will never
return NULL (but no CC knows that) so use goto to skip the test on both
halfs of GvAVn.
pp.c