diff options
author | Jeff Law <law@redhat.com> | 2016-10-26 09:47:48 -0600 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2016-10-26 09:47:48 -0600 |
commit | aa315f3463e4b2aff3490868c2389ec7e304d854 (patch) | |
tree | 185d50e24559647632062df6851f9f3eb93267d8 /gcc/config/nios2 | |
parent | e741aaa3826715ae2a39850691f5e5efa1a06e6f (diff) | |
download | gcc-aa315f3463e4b2aff3490868c2389ec7e304d854.zip gcc-aa315f3463e4b2aff3490868c2389ec7e304d854.tar.gz gcc-aa315f3463e4b2aff3490868c2389ec7e304d854.tar.bz2 |
* config/nios2/nios2.c (nios2_rtx_costs): Avoid fallthru.
From-SVN: r241566
Diffstat (limited to 'gcc/config/nios2')
-rw-r--r-- | gcc/config/nios2/nios2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/config/nios2/nios2.c b/gcc/config/nios2/nios2.c index 8afb468..2a28fad 100644 --- a/gcc/config/nios2/nios2.c +++ b/gcc/config/nios2/nios2.c @@ -1493,6 +1493,7 @@ nios2_rtx_costs (rtx x, machine_mode mode ATTRIBUTE_UNUSED, *total = COSTS_N_INSNS (1); return true; } + return false; default: return false; |