diff options
author | Michael Meissner <meissner@linux.vnet.ibm.com> | 2010-12-08 16:34:20 +0000 |
---|---|---|
committer | Michael Meissner <meissner@gcc.gnu.org> | 2010-12-08 16:34:20 +0000 |
commit | b0ce92b4038fa29a390186c9eb03f1f1cfa8dd56 (patch) | |
tree | d6a2589788d2d96ce23e4a18e6a6325f473bfe53 /gcc/builtins.c | |
parent | afca0898bc7728495064f251d6094970e036a5c7 (diff) | |
download | gcc-b0ce92b4038fa29a390186c9eb03f1f1cfa8dd56.zip gcc-b0ce92b4038fa29a390186c9eb03f1f1cfa8dd56.tar.gz gcc-b0ce92b4038fa29a390186c9eb03f1f1cfa8dd56.tar.bz2 |
PR 42694: add checks to make sure sqrt is supported
From-SVN: r167594
Diffstat (limited to 'gcc/builtins.c')
-rw-r--r-- | gcc/builtins.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gcc/builtins.c b/gcc/builtins.c index 2816a7e..eb2aa3e 100644 --- a/gcc/builtins.c +++ b/gcc/builtins.c @@ -3068,7 +3068,8 @@ expand_builtin_pow_root (location_t loc, tree arg0, tree arg1, tree type, if (REAL_VALUES_EQUAL (c, dconsthalf)) op = build_call_nofold_loc (loc, sqrtfn, 1, arg0); - else + /* Don't do this optimization if we don't have a sqrt insn. */ + else if (optab_handler (sqrt_optab, mode) != CODE_FOR_nothing) { REAL_VALUE_TYPE dconst1_4 = dconst1; REAL_VALUE_TYPE dconst3_4; @@ -3114,7 +3115,8 @@ expand_builtin_pow_root (location_t loc, tree arg0, tree arg1, tree type, op = build_call_nofold_loc (loc, cbrtfn, 1, arg0); /* Now try 1/6. */ - else if (optimize_insn_for_speed_p ()) + else if (optimize_insn_for_speed_p () + && optab_handler (sqrt_optab, mode) != CODE_FOR_nothing) { REAL_VALUE_TYPE dconst1_6 = dconst1_3; SET_REAL_EXP (&dconst1_6, REAL_EXP (&dconst1_6) - 1); |