This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug rtl-optimization/54365] ARM optimization bug when pointer arithmetic wraps


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=54365

--- Comment #5 from Greg Law <glaw@undo-software.com> 2012-08-30 13:23:54 UTC ---
-fwrapv doesn't appear to make a difference:

 $ gcc compilerbug.c 
 $ ./a.out 
it wraps
 $ gcc -O2 compilerbug.c 
 $ ./a.out 
no wrap
 $ gcc -O2 -fwrapv compilerbug.c
 $ ./a.out
no wrap
 $


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]