aboutsummaryrefslogtreecommitdiff
path: root/code/runtime.odin
diff options
context:
space:
mode:
authorGinger Bill <bill@gingerbill.org>2016-09-15 18:58:29 +0100
committerGinger Bill <bill@gingerbill.org>2016-09-15 18:58:29 +0100
commit807256dea4d22550ee5da48e806b4e773670fbfc (patch)
tree8db9056e3117d67f4dee4b8b6fe7a7c84c4b3b2b /code/runtime.odin
parentb6cb4f4d145bdc87aecf8edd678d025b22faff57 (diff)
ssa - alloca all variables at the very start
Diffstat (limited to 'code/runtime.odin')
-rw-r--r--code/runtime.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/code/runtime.odin b/code/runtime.odin
index 4a440dc89..1d293b5f7 100644
--- a/code/runtime.odin
+++ b/code/runtime.odin
@@ -171,7 +171,7 @@ __string_ge :: proc(a, b : string) -> bool #inline { return __string_cmp(a, b) >
__assert :: proc(msg: string) {
- os.write(os.get_standard_file(os.File_Standard.ERROR), msg as []byte)
+ _ = os.write(os.get_standard_file(os.File_Standard.ERROR), msg as []byte)
__debug_trap()
}