diff options
author | Indu Bhagat <indu.bhagat@oracle.com> | 2022-11-15 15:06:39 -0800 |
---|---|---|
committer | Indu Bhagat <indu.bhagat@oracle.com> | 2022-11-15 15:23:57 -0800 |
commit | b07a29781610756a9b75a931c7c13735b7555d9f (patch) | |
tree | 69d330c17627a99ca6b37bb1542aebe289140ae0 /gas/as.h | |
parent | 972d23ddbd757b7bee622a231afa79adf82b414f (diff) | |
download | gdb-b07a29781610756a9b75a931c7c13735b7555d9f.zip gdb-b07a29781610756a9b75a931c7c13735b7555d9f.tar.gz gdb-b07a29781610756a9b75a931c7c13735b7555d9f.tar.bz2 |
gas: add new command line option --gsframe
When --gsframe is specified, the assembler will generate a .sframe
section from the CFI directives in the assembly.
ChangeLog:
* gas/as.c (parse_args): Parse args and set flag_gen_sframe.
* gas/as.h: Introduce skeleton for --gsframe.
* gas/doc/as.texi: document --gsframe.
Diffstat (limited to 'gas/as.h')
-rw-r--r-- | gas/as.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -337,6 +337,9 @@ COMMON int flag_execstack; /* TRUE if .note.GNU-stack section with SEC_CODE should be created */ COMMON int flag_noexecstack; +/* TRUE if .sframe section should be created. */ +COMMON int flag_gen_sframe; + /* name of emitted object file */ COMMON const char *out_file_name; |