diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 1999-11-03 20:40:32 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 1999-11-03 20:40:32 +0000 |
commit | 4b66e1c09193e7606ebe6009a872bace584a0eb9 (patch) | |
tree | 89dfd5f9bb72d30f1f34a371ec59dff03a005ae6 /gcc/simplify-rtx.c | |
parent | f0447047c4b70d74c63ce8420053bdbfbeb26107 (diff) | |
download | gcc-4b66e1c09193e7606ebe6009a872bace584a0eb9.zip gcc-4b66e1c09193e7606ebe6009a872bace584a0eb9.tar.gz gcc-4b66e1c09193e7606ebe6009a872bace584a0eb9.tar.bz2 |
fix-header.c (recognized_extern, [...]): Constify a char*.
* fix-header.c (recognized_extern, recognized_function): Constify
a char*.
* lcm.c (compute_laterin): Remove unused variable `temp_bitmap'.
(pre_edge_lcm): Mark parameter `file' with ATTRIBUTE_UNUSED.
(compute_available): Remove unused variable `last'.
(compute_nearerout): Remove unused variable `temp_bitmap'.
(pre_edge_rev_lcm): Mark parameter `file' with ATTRIBUTE_UNUSED.
Remove unused variable `x'.
* scan.h (recognized_function, recognized_extern): Constify a
char*.
* simplify-rtx.c (simplify_rtx): Remove unused variable `new'.
From-SVN: r30380
Diffstat (limited to 'gcc/simplify-rtx.c')
-rw-r--r-- | gcc/simplify-rtx.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/simplify-rtx.c b/gcc/simplify-rtx.c index 6e78627..ff31d8c 100644 --- a/gcc/simplify-rtx.c +++ b/gcc/simplify-rtx.c @@ -1923,7 +1923,6 @@ simplify_rtx (x) { enum rtx_code code; enum machine_mode mode; - rtx new; mode = GET_MODE (x); code = GET_CODE (x); |