Silence gcc 2.95 warning
Nicholas Clark [Sat, 29 Nov 2003 14:44:56 +0000 (14:44 +0000)]
(Its trace flow isn't good enough to realise that there is no problem)

p4raw-id: //depot/perl@21805

pp_hot.c

index 0bcb7bd..efc7a27 100644 (file)
--- a/pp_hot.c
+++ b/pp_hot.c
@@ -967,7 +967,8 @@ PP(pp_aassign)
     I32 i;
     int magic;
     int duplicates = 0;
-    SV **firsthashrelem;
+    SV **firsthashrelem = 0;   /* "= 0" keeps gcc 2.95 quiet  */
+
 
     PL_delaymagic = DM_DELAY;          /* catch simultaneous items */
     gimme = GIMME_V;