mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-03-01 22:06:14 +00:00
* arm.cc (Target_arm::scan::global): Use || instead of |.
This commit is contained in:
parent
0018b0a3d5
commit
07800fab6e
@ -1,3 +1,7 @@
|
|||||||
|
2009-06-03 Ian Lance Taylor <iant@google.com>
|
||||||
|
|
||||||
|
* arm.cc (Target_arm::scan::global): Use || instead of |.
|
||||||
|
|
||||||
2009-05-31 Mikolaj Zalewski <mikolajz@google.com>
|
2009-05-31 Mikolaj Zalewski <mikolajz@google.com>
|
||||||
|
|
||||||
* incremental.cc (Incremental_inputs::report_command_line): Filter
|
* incremental.cc (Incremental_inputs::report_command_line): Filter
|
||||||
|
@ -943,7 +943,7 @@ Target_arm<big_endian>::Scan::global(const General_options&,
|
|||||||
// Make a dynamic relocation if necessary.
|
// Make a dynamic relocation if necessary.
|
||||||
int flags = Symbol::NON_PIC_REF;
|
int flags = Symbol::NON_PIC_REF;
|
||||||
if (gsym->type() == elfcpp::STT_FUNC
|
if (gsym->type() == elfcpp::STT_FUNC
|
||||||
| gsym->type() == elfcpp::STT_ARM_TFUNC)
|
|| gsym->type() == elfcpp::STT_ARM_TFUNC)
|
||||||
flags |= Symbol::FUNCTION_CALL;
|
flags |= Symbol::FUNCTION_CALL;
|
||||||
if (gsym->needs_dynamic_reloc(flags))
|
if (gsym->needs_dynamic_reloc(flags))
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user