Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | sanity: Don't use self-init for uninit() | Tavian Barnes | 2024-02-12 | 1 | -2/+2 |
| | | | | | | | | | | | Self-initialization like bool ret = ret; is a GCC trick to suppress uninitialized variable warnings, but it's not actually well-defined, and will trip a recent enough MemorySanitizer: src/eval.c:1088:13: runtime error: load of value 128, which is not a valid value for type 'bool' | ||||
* | sanity: Suppress unused variable warnings with sanitizers off | Tavian Barnes | 2023-06-20 | 1 | -2/+7 |
| | |||||
* | sanity: Make sanitize_[un]init() always a void expression | Tavian Barnes | 2023-06-14 | 1 | -2/+2 |
| | |||||
* | sanity: Add wrappers for sanitizer interfaces | Tavian Barnes | 2023-05-25 | 1 | -0/+89 |