[all-commits] [llvm/llvm-project] 4d37f1: [lldb][NFC] Extract single member parsing out of D...
Raphael Isemann via All-commits
all-commits at lists.llvm.org
Wed Dec 4 01:06:21 PST 2019
Branch: refs/heads/master
Home: https://github.com/llvm/llvm-project
Commit: 4d37f18b29cc3fd1abd336ec10baca17694d035f
https://github.com/llvm/llvm-project/commit/4d37f18b29cc3fd1abd336ec10baca17694d035f
Author: Raphael Isemann <teemperor at gmail.com>
Date: 2019-12-04 (Wed, 04 Dec 2019)
Changed paths:
M lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.cpp
M lldb/source/Plugins/SymbolFile/DWARF/DWARFASTParserClang.h
Log Message:
-----------
[lldb][NFC] Extract single member parsing out of DWARFASTParserClang::ParseChildMembers
ParseChildMembers does a few things, only one part is actually parsing a single
member. This extracts the member parsing logic into its own function.
This commit just moves the code as-is into its own function and forwards the parameters/
local variables to it, which means it should be NFC.
The only actual changes to the code are replacing 'break's (and one very curious 'continue'
that behaves like a 'break') with 'return's.
More information about the All-commits
mailing list