diff options
author | Neil Booth <neil@daikokuya.co.uk> | 2003-06-22 09:04:57 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2003-06-22 09:04:57 +0000 |
commit | 9cd23ed2b48322e8e8a59f20c83e71500afe7b00 (patch) | |
tree | 2785029799589d4a21de52b61fca6dea41dbd6a7 /gcc/opts.h | |
parent | 0e9e3a8b78c5e8f59542d62945ec227fab3e8afd (diff) | |
download | gcc-9cd23ed2b48322e8e8a59f20c83e71500afe7b00.zip gcc-9cd23ed2b48322e8e8a59f20c83e71500afe7b00.tar.gz gcc-9cd23ed2b48322e8e8a59f20c83e71500afe7b00.tar.bz2 |
opts.c (find_opt): Fix to always guarantee a find of a switch with joined parameter.
* opts.c (find_opt): Fix to always guarantee a find of a
switch with joined parameter.
* opts.h (struct cl_option): New member back_chain.
* opts.sh: Update to calculate and add back_chain member.
From-SVN: r68324
Diffstat (limited to 'gcc/opts.h')
-rw-r--r-- | gcc/opts.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -26,6 +26,7 @@ extern int handle_option (int argc, char **argv, int lang_mask); struct cl_option { const char *opt_text; + unsigned short back_chain; unsigned char opt_len; unsigned int flags; }; |