1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:37:34 +00:00

Kernel: And some more KUBSAN checks :^)

Here comes a few more:

* enum
* object-size
* vptr
This commit is contained in:
Andreas Kling 2021-02-06 17:34:44 +01:00
parent fad0332898
commit 04ff46bff4
3 changed files with 15 additions and 1 deletions

View file

@ -96,4 +96,11 @@ struct OutOfBoundsData {
const TypeDescriptor& index_type;
};
struct TypeMismatchData {
SourceLocation location;
const TypeDescriptor& type;
u8 log_alignment;
u8 type_check_kind;
};
}