diff options
| author | Max Filippov | 2013-01-21 15:40:04 +0100 |
|---|---|---|
| committer | Max Filippov | 2013-07-29 16:24:27 +0200 |
| commit | 5739006b9ab1ae3680359db5a291eae97eef0f9f (patch) | |
| tree | 7997b1d2ee5b812854a99a7d0b39ed64c800e44b /target-xtensa | |
| parent | target-xtensa: add extui unit test (diff) | |
| download | qemu-5739006b9ab1ae3680359db5a291eae97eef0f9f.tar.gz qemu-5739006b9ab1ae3680359db5a291eae97eef0f9f.tar.xz qemu-5739006b9ab1ae3680359db5a291eae97eef0f9f.zip | |
target-xtensa: add fallthrough markers
Explicitly mark cases where we are deliberately falling through to the
following code.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'target-xtensa')
| -rw-r--r-- | target-xtensa/op_helper.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target-xtensa/op_helper.c b/target-xtensa/op_helper.c index 4c41de0668..834fe9087d 100644 --- a/target-xtensa/op_helper.c +++ b/target-xtensa/op_helper.c @@ -448,8 +448,10 @@ void HELPER(check_atomctl)(CPUXtensaState *env, uint32_t pc, uint32_t vaddr) switch (access & PAGE_CACHE_MASK) { case PAGE_CACHE_WB: atomctl >>= 2; + /* fall through */ case PAGE_CACHE_WT: atomctl >>= 2; + /* fall through */ case PAGE_CACHE_BYPASS: if ((atomctl & 0x3) == 0) { HELPER(exception_cause_vaddr)(env, pc, |
