Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions docs/design/safety/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,10 +228,11 @@ that disables the run-time enforcement, enabling the control of any overhead inc
[evidence]: https://chandlerc.blog/posts/2024/11/story-time-bounds-checking/
[performance control]: /docs/project/goals.md#performance-critical-software

The debug build will work to cause bugs and any detectable undefined or
erroneous behavior to have [fail-stop] behavior and even detailed diagnostics to
enable better debugging. This mode will at least provide similar bug [detection]
capabilities to [AddressSanitizer] and [MemorySanitizer].
The debug build will work to cause bugs, in both safe and unsafe code, and any
detectable undefined or erroneous behavior to have [fail-stop] behavior and even
detailed diagnostics to enable better debugging. This mode will at least provide
similar bug [detection] capabilities to [AddressSanitizer] and
[MemorySanitizer].

[fail-stop]: /docs/design/safety/terminology.md#fail-stop
[detection]: /docs/design/safety/terminology.md#detecting
Expand Down
Loading