diff options
| author | gingerBill <bill@gingerbill.org> | 2021-04-22 10:35:17 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-04-22 10:35:17 +0100 |
| commit | 47c7dc6a9bfc679f027984bd68523743b4d7734f (patch) | |
| tree | 8ba1ec35c1e2c0b0229a78ccee3dfc91381b69f5 /core/runtime | |
| parent | 65551ba8fb862a9caef97b3c84b17baa7715bbb6 (diff) | |
Add new intrinsics: debug_trap, trap, read_cycle_counter, expect
Diffstat (limited to 'core/runtime')
| -rw-r--r-- | core/runtime/core.odin | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/core/runtime/core.odin b/core/runtime/core.odin index ac5e90460..1052b74fb 100644 --- a/core/runtime/core.odin +++ b/core/runtime/core.odin @@ -433,9 +433,6 @@ typeid_base_without_enum :: typeid_core; @(default_calling_convention = "none") foreign { - @(link_name="llvm.assume") - assume :: proc(cond: bool) ---; - @(link_name="llvm.debugtrap") debug_trap :: proc() ---; |