Re: [Bug middle-end/33279] New: Failed to warn uninitialized stack variable

2007-09-02 Thread Andrew Pinski
On 2 Sep 2007 13:19:45 -, hjl at lucon dot org <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] uninit-2]$ cat x.c > typedef int mpz_t[1]; > typedef struct iterator_stack > { > struct iterator_stack *prev; > mpz_t value; > } iterator_stack; > iterator_stack *x; > void bar (mpz_t); > void > fo

[Bug middle-end/33279] New: Failed to warn uninitialized stack variable

2007-09-02 Thread hjl at lucon dot org
[EMAIL PROTECTED] uninit-2]$ cat x.c typedef int mpz_t[1]; typedef struct iterator_stack { struct iterator_stack *prev; mpz_t value; } iterator_stack; iterator_stack *x; void bar (mpz_t); void foo () { iterator_stack frame; bar (frame.value); x = frame.prev; } [EMAIL PROTECTED] uninit-2]$