Ticket #34639: patch-gcc-toplev.c.diff
File patch-gcc-toplev.c.diff, 603 bytes (added by jmroot (Joshua Root), 12 years ago) |
---|
-
gcc/toplev.c
old new read_integral_parameter (const char *p, 517 517 return atoi (p); 518 518 } 519 519 520 #if GCC_VERSION < 3004 520 521 /* Given X, an unsigned number, return the largest int Y such that 2**Y <= X. 521 522 If X is 0, return -1. */ 522 523 … … exact_log2 (unsigned HOST_WIDE_INT x) 566 567 return floor_log2 (x); 567 568 #endif 568 569 } 570 #endif /* GCC_VERSION < 3004 */ 569 571 570 572 /* Handler for fatal signals, such as SIGSEGV. These are transformed 571 573 into ICE messages, which is much more user friendly. In case the