diff options
author | Martin Liska <mliska@suse.cz> | 2017-03-03 13:53:13 +0100 |
---|---|---|
committer | Martin Liska <marxin@gcc.gnu.org> | 2017-03-03 12:53:13 +0000 |
commit | 1c98e10bc9cb6f8da44a53e660209236a9bf2654 (patch) | |
tree | e2db5e15377cdb01f35e168d2cde325c7fa23864 /gcc/tree-ssa-loop-prefetch.c | |
parent | 0e174ae195e638292f332d183e79a49b47ee7823 (diff) | |
download | gcc-1c98e10bc9cb6f8da44a53e660209236a9bf2654.zip gcc-1c98e10bc9cb6f8da44a53e660209236a9bf2654.tar.gz gcc-1c98e10bc9cb6f8da44a53e660209236a9bf2654.tar.bz2 |
Remove unused variable.
2017-03-03 Martin Liska <mliska@suse.cz>
* tree-ssa-loop-prefetch.c (pass_loop_prefetch::execute):
Remove unused variable.
From-SVN: r245873
Diffstat (limited to 'gcc/tree-ssa-loop-prefetch.c')
-rw-r--r-- | gcc/tree-ssa-loop-prefetch.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/tree-ssa-loop-prefetch.c b/gcc/tree-ssa-loop-prefetch.c index a137207..339eeaf 100644 --- a/gcc/tree-ssa-loop-prefetch.c +++ b/gcc/tree-ssa-loop-prefetch.c @@ -2035,7 +2035,6 @@ pass_loop_prefetch::execute (function *fun) if (number_of_loops (fun) <= 1) return 0; - bool warned_p = false; if ((PREFETCH_BLOCK & (PREFETCH_BLOCK - 1)) != 0) { static bool warned = false; |