diff options
author | Roger Sayle <roger@nextmovesoftware.com> | 2021-06-11 17:42:14 +0100 |
---|---|---|
committer | Roger Sayle <roger@nextmovesoftware.com> | 2021-06-11 17:42:14 +0100 |
commit | a761829ae06a754f72ff957cbedb21f4d98fab70 (patch) | |
tree | 30829fc83120abdaf353a3679651dac68c89d498 /gcc | |
parent | 5b02ed4b87685c0f7c5da9b46cde3ce56fcfd457 (diff) | |
download | gcc-a761829ae06a754f72ff957cbedb21f4d98fab70.zip gcc-a761829ae06a754f72ff957cbedb21f4d98fab70.tar.gz gcc-a761829ae06a754f72ff957cbedb21f4d98fab70.tar.bz2 |
[PATCH] PR tree-optimization/96392 Optimize x+0.0 if x is an integer
Doh! Wrong patch version. Sorry for the inconvenience.
2020-06-11 Roger Sayle <roger@nextmovesoftware.com>
gcc/ChangeLog
PR tree-optimization/96392
* fold-const.h (tree_expr_maybe_real_minus_zero_p): Fix prototype.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/fold-const.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/fold-const.h b/gcc/fold-const.h index 0d8d786..7bac84b 100644 --- a/gcc/fold-const.h +++ b/gcc/fold-const.h @@ -196,7 +196,7 @@ extern bool tree_expr_signaling_nan_p (const_tree); extern bool tree_expr_maybe_signaling_nan_p (const_tree); extern bool tree_expr_nan_p (const_tree); extern bool tree_expr_maybe_nan_p (const_tree); -extern bool tree_maybe_real_minus_zero_p (const_tree); +extern bool tree_expr_maybe_real_minus_zero_p (const_tree); extern tree make_range (tree, int *, tree *, tree *, bool *); extern tree make_range_step (location_t, enum tree_code, tree, tree, tree, tree *, tree *, int *, bool *); |