From 36ad9dae43cd21d8532994cd0d0e92a89af0ed04 Mon Sep 17 00:00:00 2001 From: Ginger Bill Date: Tue, 22 Nov 2016 00:13:52 +0000 Subject: 128 bit integers Kind of works but may be buggy due to LLVM not actually sure --- src/parser.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/parser.cpp') diff --git a/src/parser.cpp b/src/parser.cpp index a50edb6c4..d263fa1dd 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -3177,6 +3177,11 @@ ParseFileError parse_files(Parser *p, char *init_filename) { ImportedFile runtime_file = {s, s, init_pos}; array_add(&p->imports, runtime_file); } + { + String s = get_fullpath_core(heap_allocator(), make_string("_soft_numbers.odin")); + ImportedFile runtime_file = {s, s, init_pos}; + array_add(&p->imports, runtime_file); + } for_array(i, p->imports) { ImportedFile imported_file = p->imports[i]; -- cgit v1.2.3