mirror of
https://github.com/yuzu-emu/breakpad.git
synced 2024-12-23 13:45:28 +00:00
The has_sol field of struct FuncInfo is unused. This patch removes it.
A=jimblandy R=nealsid git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@364 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
53cb8044fd
commit
1147cc4920
|
@ -95,8 +95,6 @@ struct FuncInfo {
|
||||||
uint32_t size;
|
uint32_t size;
|
||||||
// Total size of stack parameters.
|
// Total size of stack parameters.
|
||||||
uint32_t stack_param_size;
|
uint32_t stack_param_size;
|
||||||
// Is there any lines included from other files?
|
|
||||||
bool has_sol;
|
|
||||||
// Line information array.
|
// Line information array.
|
||||||
LineInfoList line_info;
|
LineInfoList line_info;
|
||||||
};
|
};
|
||||||
|
@ -218,7 +216,6 @@ static int LoadLineInfo(struct nlist *list,
|
||||||
const struct SourceFileInfo &source_file_info,
|
const struct SourceFileInfo &source_file_info,
|
||||||
struct FuncInfo *func_info) {
|
struct FuncInfo *func_info) {
|
||||||
struct nlist *cur_list = list;
|
struct nlist *cur_list = list;
|
||||||
func_info->has_sol = false;
|
|
||||||
// Records which source file the following lines belongs. Default
|
// Records which source file the following lines belongs. Default
|
||||||
// to the file we are handling. This helps us handling inlined source.
|
// to the file we are handling. This helps us handling inlined source.
|
||||||
// When encountering N_SOL, we will change this to the source file
|
// When encountering N_SOL, we will change this to the source file
|
||||||
|
@ -233,8 +230,6 @@ static int LoadLineInfo(struct nlist *list,
|
||||||
// N_SOL means source lines following it will be from
|
// N_SOL means source lines following it will be from
|
||||||
// another source file.
|
// another source file.
|
||||||
if (cur_list->n_type == N_SOL) {
|
if (cur_list->n_type == N_SOL) {
|
||||||
func_info->has_sol = true;
|
|
||||||
|
|
||||||
if (cur_list->n_un.n_strx > 0 &&
|
if (cur_list->n_un.n_strx > 0 &&
|
||||||
cur_list->n_un.n_strx != current_source_name_index) {
|
cur_list->n_un.n_strx != current_source_name_index) {
|
||||||
// The following lines will be from this source file.
|
// The following lines will be from this source file.
|
||||||
|
@ -289,7 +284,6 @@ static int LoadFuncSymbols(struct nlist *list,
|
||||||
func_info.rva_to_base = 0;
|
func_info.rva_to_base = 0;
|
||||||
func_info.size = 0;
|
func_info.size = 0;
|
||||||
func_info.stack_param_size = 0;
|
func_info.stack_param_size = 0;
|
||||||
func_info.has_sol = 0;
|
|
||||||
|
|
||||||
// Stack parameter size.
|
// Stack parameter size.
|
||||||
cur_list += LoadStackParamSize(cur_list, list_end, &func_info);
|
cur_list += LoadStackParamSize(cur_list, list_end, &func_info);
|
||||||
|
|
Loading…
Reference in a new issue