From: Richard Stallman Date: Thu, 4 Nov 1993 05:00:24 +0000 (+0000) Subject: (build_function_call): Initialize fundecl to 0. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=346d29dc36fc8a1786f8be94c7fb9dec98354459;p=gcc.git (build_function_call): Initialize fundecl to 0. From-SVN: r5989 --- diff --git a/gcc/c-typeck.c b/gcc/c-typeck.c index 11ed850db47..410e10d0c8f 100644 --- a/gcc/c-typeck.c +++ b/gcc/c-typeck.c @@ -1412,7 +1412,7 @@ tree build_function_call (function, params) tree function, params; { - register tree fntype, fundecl; + register tree fntype, fundecl = 0; register tree coerced_params; tree name = NULL_TREE, assembler_name = NULL_TREE;