mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 13:30:58 +08:00
* ipa-inline-analysis.c (MAX_TIME): Reduce to avoid overflows.
From-SVN: r179274
This commit is contained in:
parent
2ceb2339b1
commit
99e299a8c7
@ -1,3 +1,7 @@
|
||||
2011-09-27 Jan Hubicka <jh@suse.cz>
|
||||
|
||||
* ipa-inline-analysis.c (MAX_TIME): Reduce to avoid overflows.
|
||||
|
||||
2011-09-27 Jan Hubicka <jh@suse.cz>
|
||||
|
||||
* ipa-inline-analysis.c (eliminated_by_inlining_prob): Handle parameters
|
||||
|
@ -92,7 +92,7 @@ along with GCC; see the file COPYING3. If not see
|
||||
/* Estimate runtime of function can easilly run into huge numbers with many
|
||||
nested loops. Be sure we can compute time * INLINE_SIZE_SCALE in integer.
|
||||
For anything larger we use gcov_type. */
|
||||
#define MAX_TIME 1000000
|
||||
#define MAX_TIME 500000
|
||||
|
||||
/* Number of bits in integer, but we really want to be stable across different
|
||||
hosts. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user