aboutsummaryrefslogtreecommitdiff
path: root/core/runtime
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-04-22 10:35:17 +0100
committergingerBill <bill@gingerbill.org>2021-04-22 10:35:17 +0100
commit47c7dc6a9bfc679f027984bd68523743b4d7734f (patch)
tree8ba1ec35c1e2c0b0229a78ccee3dfc91381b69f5 /core/runtime
parent65551ba8fb862a9caef97b3c84b17baa7715bbb6 (diff)
Add new intrinsics: debug_trap, trap, read_cycle_counter, expect
Diffstat (limited to 'core/runtime')
-rw-r--r--core/runtime/core.odin3
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() ---;