Changes in kernel/generic/src/lib/ubsan.c [bf05c74:be6e37a] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/lib/ubsan.c
rbf05c74 rbe6e37a 113 113 void __ubsan_handle_pointer_overflow(struct pointer_overflow_data *data, 114 114 unsigned long base, unsigned long result); 115 void __ubsan_handle_builtin_unreachable(struct unreachable_data *data); 115 116 116 117 static void print_loc(const char *func, struct source_location *loc) … … 255 256 ubsan_panic(); 256 257 } 258 259 void __ubsan_handle_builtin_unreachable(struct unreachable_data *data) 260 { 261 print_loc(__func__, &data->loc); 262 ubsan_panic(); 263 }
Note:
See TracChangeset
for help on using the changeset viewer.