From: Matthew Fortune Date: Tue, 9 Aug 2016 12:36:18 +0000 (+0000) Subject: MIPS: Use create_tmp_var_raw in mips_atomic_assign_expand_fenv X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a00f4c6b4f46ab219946e738586fca49d4e71bfd;p=gcc.git MIPS: Use create_tmp_var_raw in mips_atomic_assign_expand_fenv gcc/ PR c/65345 * config/mips/mips.c (mips_atomic_assign_expand_fenv): Use create_tmp_var_raw instead of create_tmp_var. From-SVN: r239278 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9cb04ca01b4..a0bdfdbedb3 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2016-08-09 Matthew Fortune + + PR c/65345 + * config/mips/mips.c (mips_atomic_assign_expand_fenv): + Use create_tmp_var_raw instead of create_tmp_var. + 2016-08-09 Richard Biener * tree-ssa-threadbackward.c (profitable_jump_thread_path): diff --git a/gcc/config/mips/mips.c b/gcc/config/mips/mips.c index 57b7633b0d1..88f4038224a 100644 --- a/gcc/config/mips/mips.c +++ b/gcc/config/mips/mips.c @@ -21991,9 +21991,9 @@ mips_atomic_assign_expand_fenv (tree *hold, tree *clear, tree *update) { if (!TARGET_HARD_FLOAT_ABI) return; - tree exceptions_var = create_tmp_var (MIPS_ATYPE_USI); - tree fcsr_orig_var = create_tmp_var (MIPS_ATYPE_USI); - tree fcsr_mod_var = create_tmp_var (MIPS_ATYPE_USI); + tree exceptions_var = create_tmp_var_raw (MIPS_ATYPE_USI); + tree fcsr_orig_var = create_tmp_var_raw (MIPS_ATYPE_USI); + tree fcsr_mod_var = create_tmp_var_raw (MIPS_ATYPE_USI); tree get_fcsr = mips_builtin_decls[MIPS_GET_FCSR]; tree set_fcsr = mips_builtin_decls[MIPS_SET_FCSR]; tree get_fcsr_hold_call = build_call_expr (get_fcsr, 0);