commit | e70c182d388e94ff4319cd2eb64415579de73161 | [log] [tgz] |
---|---|---|
author | Christopher Ferris <cferris@google.com> | Wed Sep 19 14:12:59 2018 -0700 |
committer | Christopher Ferris <cferris@google.com> | Wed Sep 19 14:12:59 2018 -0700 |
tree | 49863f3ca428c9f859fee17030d059fde96bc462 | |
parent | 898e801b4a865f03a90dd2525c8c7b0e5c35db9e [diff] |
Fix implicit fall through switch cases. Bug: 116020901 Test: Builds with -Werror=implicit-fallthrough. Change-Id: I401f37585dae6cbf8995389a8a189abc2e102987
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 @@ if (reg == eval_info->cie->return_address_register) { eval_info->return_address_undefined = true; } + break; default: break; }