diff options
Diffstat (limited to 'gdb/producer.h')
-rw-r--r-- | gdb/producer.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/producer.h b/gdb/producer.h index 5cdb7ee..f5bf807 100644 --- a/gdb/producer.h +++ b/gdb/producer.h @@ -1,6 +1,6 @@ /* Producer string parsers for GDB. - Copyright (C) 2012-2024 Free Software Foundation, Inc. + Copyright (C) 2012-2025 Free Software Foundation, Inc. This file is part of GDB. @@ -50,4 +50,8 @@ extern bool producer_is_llvm (const char *producer); Sets MAJOR and MINOR accordingly, if not NULL. */ extern bool producer_is_clang (const char *producer, int *major, int *minor); +/* Return true if the supplied producer string matches the ARM + RealView compiler (armcc). */ +extern bool producer_is_realview (const char *producer); + #endif /* GDB_PRODUCER_H */ |