From 807256dea4d22550ee5da48e806b4e773670fbfc Mon Sep 17 00:00:00 2001 From: Ginger Bill Date: Thu, 15 Sep 2016 18:58:29 +0100 Subject: ssa - alloca all variables at the very start --- code/runtime.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'code/runtime.odin') 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() } -- cgit v1.2.3