Re: Uninitialized global variables

2002-08-13 Thread David Evans
The only way to get warnings for uninitalized non-local variables is by using annotations (/*@globals undef a@*/). In the example you have, its simple enough to do a flow analysis to see that a is used before it is initialized, but in general doing that type of global flow analysis is

Re: Uninitialized global variables

2002-08-13 Thread Finny Merrill
On Tue, 13 Aug 2002, Massimiliano Cialdi wrote: I need to search for uninitialized variables in a not-instrumented source code (w/o annotations). No problem with local (automatic) variables but I don't know how to analize global variables. for example: --