Reorder cases to avoid fall-through warning
authorXiretza <xiretza@xiretza.xyz>
Thu, 7 May 2020 09:44:38 +0000 (11:44 +0200)
committerXiretza <xiretza@xiretza.xyz>
Thu, 7 May 2020 11:39:34 +0000 (13:39 +0200)
commitd86fc791f9016fa6dafa7af1758ef301136e9eec
treefe86460a1d0027fe18b1e7babbdda62288f6c3df
parent695150b0378528233837348b598033b137b8a949
Reorder cases to avoid fall-through warning

log_assert(false) never returns and thus can't fall through, but gcc
doesn't seem to think that far. Making it the last case avoids the
problem entirely.
backends/cxxrtl/cxxrtl.cc