https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53871
David Binderman <dcb314 at hotmail dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dcb314 at hotmail dot com
--- Comment #6 from David Binderman <dcb314 at hotmail dot com> ---
Derived from the current Linux kernel:
// i never changes, so the code loops forever.
extern int f2( int);
void f1()
{
int i = 0;
do {
int n = f2( i);
if (n < 0 || n > 10)
break;
} while (i < 8);
}
$ ~/gcc/results/bin/gcc -c -g -O2 -Wall -Wextra dec30b.cc
$