diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/make-docfile.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c index 05a08473c3f..ccd245e0139 100644 --- a/lib-src/make-docfile.c +++ b/lib-src/make-docfile.c | |||
| @@ -1107,6 +1107,9 @@ scan_c_stream (FILE *infile) | |||
| 1107 | g->flags |= DEFUN_noreturn; | 1107 | g->flags |= DEFUN_noreturn; |
| 1108 | if (strstr (input_buffer, "const")) | 1108 | if (strstr (input_buffer, "const")) |
| 1109 | g->flags |= DEFUN_const; | 1109 | g->flags |= DEFUN_const; |
| 1110 | |||
| 1111 | /* Although the noinline attribute is no longer used, | ||
| 1112 | leave its support in, in case it's needed later. */ | ||
| 1110 | if (strstr (input_buffer, "noinline")) | 1113 | if (strstr (input_buffer, "noinline")) |
| 1111 | g->flags |= DEFUN_noinline; | 1114 | g->flags |= DEFUN_noinline; |
| 1112 | } | 1115 | } |