diff options
author | Martin Liska <mliska@suse.cz> | 2021-06-29 08:49:26 +0200 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2021-06-29 08:49:26 +0200 |
commit | 490d1e1be15b62b51a2de248e6d7f76356402bc9 (patch) | |
tree | a140872a97abd647ca0e5287e5375b7514be227b /gcc/flags.h | |
parent | adf0825ae77554b00615521a545b608892bb272c (diff) | |
parent | 095a01cf6e3883b3083cf339b680cdb39910f529 (diff) | |
download | gcc-490d1e1be15b62b51a2de248e6d7f76356402bc9.zip gcc-490d1e1be15b62b51a2de248e6d7f76356402bc9.tar.gz gcc-490d1e1be15b62b51a2de248e6d7f76356402bc9.tar.bz2 |
Merge branch 'master' into devel/sphinx
Diffstat (limited to 'gcc/flags.h')
-rw-r--r-- | gcc/flags.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/flags.h b/gcc/flags.h index cc7b79b..85fd228 100644 --- a/gcc/flags.h +++ b/gcc/flags.h @@ -40,10 +40,19 @@ unsigned int debug_set_count (uint32_t w_symbols); const char * debug_set_names (uint32_t w_symbols); +/* Return true iff BTF debug info is enabled. */ + +extern bool btf_debuginfo_p (); + /* Return true iff DWARF2 debug info is enabled. */ extern bool dwarf_debuginfo_p (); +/* Return true iff the debug info format is to be generated based on DWARF + DIEs (like CTF and BTF debug info formats). */ + +extern bool dwarf_based_debuginfo_p (); + extern void strip_off_ending (char *, int); extern int base_of_path (const char *path, const char **base_out); |