mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 17:18:55 +00:00
* arm-tdep.c (arm_skip_prologue): Extending producer check to support LLVM compiler.
This commit is contained in:
@@ -1400,7 +1400,8 @@ arm_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
|
||||
if (post_prologue_pc
|
||||
&& (s == NULL
|
||||
|| s->producer == NULL
|
||||
|| strncmp (s->producer, "GNU ", sizeof ("GNU ") - 1) == 0))
|
||||
|| strncmp (s->producer, "GNU ", sizeof ("GNU ") - 1) == 0
|
||||
|| strncmp (s->producer, "clang ", sizeof ("clang ") - 1) == 0))
|
||||
return post_prologue_pc;
|
||||
|
||||
if (post_prologue_pc != 0)
|
||||
|
||||
Reference in New Issue
Block a user