Hi Mark,
Alas I'd bootstrapped and regression tested the following fix for
PR middle-end/14203 before I noticed that you'd recently assigned
this PR to yourself. Is this the fix you're investigating?
The problem is that uninitialized_vars_warning is using DECL_RTL to
check whether a declaration has RTL, instead of DECL_RTL_SET_P.
The former has the unfortunate side-effect of actually attempting to
generate RTL, which then leads to an ICE. My guess is that this is
unintentional in a routine intended to issue compiler warnings.
The following patch has been tested on i686-pc-linux-gnu with a full
"make bootstrap", all languages except treelang, and regression tested
with a top-level "make -k check" with no new failures.
Ok for mainline and 3.4?