diff options
Diffstat (limited to 'lib/ubsan.h')
| -rw-r--r-- | lib/ubsan.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/ubsan.h b/lib/ubsan.h index f4d8d0bd4016..7b56c09473a9 100644 --- a/lib/ubsan.h +++ b/lib/ubsan.h @@ -57,11 +57,6 @@ struct nonnull_arg_data { int arg_index; }; -struct vla_bound_data { - struct source_location location; - struct type_descriptor *type; -}; - struct out_of_bounds_data { struct source_location location; struct type_descriptor *array_type; @@ -83,7 +78,7 @@ struct invalid_value_data { struct type_descriptor *type; }; -#if defined(CONFIG_ARCH_SUPPORTS_INT128) && defined(__SIZEOF_INT128__) +#if defined(CONFIG_ARCH_SUPPORTS_INT128) typedef __int128 s_max; typedef unsigned __int128 u_max; #else |