------- Additional Comments From giovannibajo at libero dot it 2005-08-10
11:25 -------
Small testcase from PR 23313, showing ICE on invalid:
-----------------------------------------
int main(){
int i;
asm (
"xorl %%ebp, %%ebp\n\t"
"movl %0, %%ebp\n\t"
:: "m" (i)
: "%ebp"
);
return 0;
}
-----------------------------------------
This makes this PR a bug, not simply an enhancement.
--
What |Removed |Added
----------------------------------------------------------------------------
Severity|enhancement |normal
Keywords| |ice-on-invalid-code
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=11807