public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
* infinite for-loop and related question
@ 2011-02-16 20:17 Jason Mancini
  2011-02-16 20:41 ` Jonathan Wakely
  0 siblings, 1 reply; 12+ messages in thread
From: Jason Mancini @ 2011-02-16 20:17 UTC (permalink / raw)
  To: gcc-help


Hello,
So as I recall, the following can be an infinite loop now with optimizations, right?

  for (int i(1); i!=0; ++i) { ... }

What about:

  unsigned int x = 0xFFFFFFFFU;
  x = x+1;
  if (x) { ... can we get here because "positive x + 1 must still positive"? ... }

If not, given the first, why not?
Thanks,
Jason Mancini 		 	   		  

^ permalink raw reply	[flat|nested] 12+ messages in thread
* Re: infinite for-loop and related question
@ 2011-02-16 23:00 Bill McEnaney
  0 siblings, 0 replies; 12+ messages in thread
From: Bill McEnaney @ 2011-02-16 23:00 UTC (permalink / raw)
  To: Jonathan Wakely, Jason Mancini, gcc-help

Although I doubt anyone would write it, this would work, wouldn't it?

int n = +10;

while ( n > 0)
   n += -1;

Bill

> On 16 February 2011 20:09, Jason Mancini wrote:
> >
> > Hello,
> > So as I recall, the following can be an infinite loop now with optimizations, right?
> >
> >   for (int i(1); i!=0; ++i) { ... }
> 
> Right.
> 
> > What about:
> >
> >   unsigned int x = 0xFFFFFFFFU;
> >   x = x+1;
> >   if (x) { ... can we get here because "positive x + 1 must still positive"? ... }
> >
> > If not, given the first, why not?
> 
> No.  The C and C++ standards define that unsigned integers do not
> overflow, they wrap, with well-defined behaviour.
> 
> They do not define what happens if a signed integer overflows, so your
> first loop results in undefined behaviour, and so you cannot
> reasonably expect any particular behaviour. The compiler can do
> whatever it likes with your code.
> 
> Put another way:
> There is no way for a correct C or C++ program to increment a signed
> integer greater than zero such that the result is zero. Because a
> correct C or C++ program does not contain integer overflows.
> 
> 

________________________________________________________________
Please visit a saintly hero:
http://www.jakemoore.org

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2011-02-17 14:05 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-16 20:17 infinite for-loop and related question Jason Mancini
2011-02-16 20:41 ` Jonathan Wakely
2011-02-16 21:37   ` Jason Mancini
2011-02-16 21:49     ` Bob Plantz
2011-02-16 23:00       ` Jonathan Wakely
2011-02-16 23:22         ` Thomas Martitz
2011-02-17  6:31           ` Jonathan Wakely
2011-02-17 10:36       ` Axel Freyn
2011-02-17 12:23         ` Jonathan Wakely
2011-02-17 13:16           ` Axel Freyn
2011-02-17 14:08             ` Jonathan Wakely
2011-02-16 23:00 Bill McEnaney

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).