dmd/changelog/druntime.expect-trap.dd
2025-02-14 08:23:16 +08:00

7 lines
395 B
Text

Adds `expect`, `likely`, `unlikely`, and `trap` to `core.builtins`
Adds the functions `expect` and `likely`/`unlikely` for branch and value hints for the LDC/GDC compilers.
DMD ignores these hints.
Adds the function `trap` to be lowered to the target-dependent trap instruction.
If the target does not have a trap instruction, this intrinsic will be lowered to a call of the `abort` function.