From 3f9582f432f114526635effc0771f9d751e6354f Mon Sep 17 00:00:00 2001 From: Christopher Ferris Date: Wed, 19 Sep 2018 14:12:59 -0700 Subject: [PATCH] Fix implicit fall through switch cases. Bug: 116020901 Test: Builds with -Werror=implicit-fallthrough. Change-Id: I401f37585dae6cbf8995389a8a189abc2e102987 --- libunwindstack/DwarfSection.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libunwindstack/DwarfSection.cpp b/libunwindstack/DwarfSection.cpp index 6061f6137..57a780ece 100644 --- a/libunwindstack/DwarfSection.cpp +++ b/libunwindstack/DwarfSection.cpp @@ -461,6 +461,7 @@ bool DwarfSectionImpl::EvalRegister(const DwarfLocation* loc, uint3 if (reg == eval_info->cie->return_address_register) { eval_info->return_address_undefined = true; } + break; default: break; }