diff options
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -10462,7 +10462,11 @@ expand_expr_real_1 (tree exp, rtx target, machine_mode tmode, if (fndecl && DECL_BUILT_IN (fndecl)) { gcc_assert (DECL_BUILT_IN_CLASS (fndecl) != BUILT_IN_FRONTEND); - return expand_builtin (exp, target, subtarget, tmode, ignore); + if (CALL_WITH_BOUNDS_P (exp)) + return expand_builtin_with_bounds (exp, target, subtarget, + tmode, ignore); + else + return expand_builtin (exp, target, subtarget, tmode, ignore); } } return expand_call (exp, target, ignore); |