diff options
author | Nils-Christian Kempke <nils-christian.kempke@intel.com> | 2022-04-11 14:06:55 +0200 |
---|---|---|
committer | Nils-Christian Kempke <nils-christian.kempke@intel.com> | 2022-04-11 14:06:55 +0200 |
commit | d4c948427dea866c6afb8d9ec7cf1f05dd1c9623 (patch) | |
tree | e576be7a3ef4a0feccf9f9f2591eaf63d884752e /gdb/f-lang.h | |
parent | 04f4c17c7a14ebb6c2212267b2ebc83f1376fe20 (diff) | |
download | binutils-d4c948427dea866c6afb8d9ec7cf1f05dd1c9623.zip binutils-d4c948427dea866c6afb8d9ec7cf1f05dd1c9623.tar.gz binutils-d4c948427dea866c6afb8d9ec7cf1f05dd1c9623.tar.bz2 |
gdb/f-lang: add Integer*1 to Fortran builtin types
Add builtin_integer_s1 of size TARGET_CHAR_BIT to Fortran builtin types.
Diffstat (limited to 'gdb/f-lang.h')
-rw-r--r-- | gdb/f-lang.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/f-lang.h b/gdb/f-lang.h index f92d3b0..512325f 100644 --- a/gdb/f-lang.h +++ b/gdb/f-lang.h @@ -319,6 +319,7 @@ struct builtin_f_type { struct type *builtin_character; struct type *builtin_integer; + struct type *builtin_integer_s1; struct type *builtin_integer_s2; struct type *builtin_integer_s8; struct type *builtin_logical; |