diff options
Diffstat (limited to 'gcc/tree-inline.c')
-rw-r--r-- | gcc/tree-inline.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-inline.c b/gcc/tree-inline.c index e38ef3a..5919b2b 100644 --- a/gcc/tree-inline.c +++ b/gcc/tree-inline.c @@ -2614,7 +2614,7 @@ estimate_move_cost (tree type) size = int_size_in_bytes (type); - if (size < 0 || size > MOVE_MAX_PIECES * MOVE_RATIO) + if (size < 0 || size > MOVE_MAX_PIECES * MOVE_RATIO (!optimize_size)) /* Cost of a memcpy call, 3 arguments and the call. */ return 4; else |