diff options
| author | gingerBill <bill@gingerbill.org> | 2020-09-10 15:00:19 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2020-09-10 15:00:19 +0100 |
| commit | c1149dbdeea1803267acd50c97a0070304b1b0c3 (patch) | |
| tree | 54576c90361640b44dd6bcb643cf71f226aee478 /src/ir_print.cpp | |
| parent | 7e625f6ee71e48a01137ac3e918b747b29cf681e (diff) | |
Update math and math/linalg; add "pure_none" calling convention
Diffstat (limited to 'src/ir_print.cpp')
| -rw-r--r-- | src/ir_print.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ir_print.cpp b/src/ir_print.cpp index 9cd7b2384..ceb95c5c3 100644 --- a/src/ir_print.cpp +++ b/src/ir_print.cpp @@ -1440,6 +1440,7 @@ void ir_print_calling_convention(irFileBuffer *f, irModule *m, ProcCallingConven case ProcCC_StdCall: ir_write_str_lit(f, "cc 64 "); break; case ProcCC_FastCall: ir_write_str_lit(f, "cc 65 "); break; case ProcCC_None: ir_write_str_lit(f, ""); break; + case ProcCC_PureNone: ir_write_str_lit(f, ""); break; default: GB_PANIC("unknown calling convention: %d", cc); } } |