mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-03-06 08:28:04 +00:00
* config/tc-arm.c (make_mapping_symbol): Add braces to avoid empty body
in release builds.
This commit is contained in:
parent
76748ada53
commit
a75b90823c
@ -1,3 +1,8 @@
|
||||
2009-10-18 Matthias Klose <doko@ubuntu.com>
|
||||
|
||||
* config/tc-arm.c (make_mapping_symbol): Add braces to avoid empty body
|
||||
in release builds.
|
||||
|
||||
2009-10-16 H.J. Lu <hongjiu.lu@intel.com>
|
||||
|
||||
PR gas/10775
|
||||
|
@ -2489,7 +2489,9 @@ make_mapping_symbol (enum mstate state, valueT value, fragS *frag)
|
||||
frag->tc_frag_data.first_map = symbolP;
|
||||
}
|
||||
if (frag->tc_frag_data.last_map != NULL)
|
||||
know (S_GET_VALUE (frag->tc_frag_data.last_map) < S_GET_VALUE (symbolP));
|
||||
{
|
||||
know (S_GET_VALUE (frag->tc_frag_data.last_map) < S_GET_VALUE (symbolP));
|
||||
}
|
||||
frag->tc_frag_data.last_map = symbolP;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user