summaryrefslogtreecommitdiff
path: root/libunwindstack
diff options
context:
space:
mode:
authorChristopher Ferris <cferris@google.com>2018-09-19 14:12:59 -0700
committerChristopher Ferris <cferris@google.com>2018-09-19 14:12:59 -0700
commit9059a60dacf780fee3eab7e9217bc5731d2c2604 (patch)
tree3921d824d2f759b2f393521d3290682823bbbf70 /libunwindstack
parentb39f8d2538522d143b516ffa827c9906b422cc2e (diff)
downloadunwinding-9059a60dacf780fee3eab7e9217bc5731d2c2604.tar.gz
Fix implicit fall through switch cases.
Bug: 116020901 Test: Builds with -Werror=implicit-fallthrough. Change-Id: I401f37585dae6cbf8995389a8a189abc2e102987
Diffstat (limited to 'libunwindstack')
-rw-r--r--libunwindstack/DwarfSection.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/libunwindstack/DwarfSection.cpp b/libunwindstack/DwarfSection.cpp
index 6061f61..57a780e 100644
--- a/libunwindstack/DwarfSection.cpp
+++ b/libunwindstack/DwarfSection.cpp
@@ -461,6 +461,7 @@ bool DwarfSectionImpl<AddressType>::EvalRegister(const DwarfLocation* loc, uint3
if (reg == eval_info->cie->return_address_register) {
eval_info->return_address_undefined = true;
}
+ break;
default:
break;
}