diff options
| author | gingerBill <bill@gingerbill.org> | 2020-05-23 13:38:06 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2020-05-23 13:38:06 +0100 |
| commit | aa029fe8d9d48477f0be27fa79f8c541451a8a0a (patch) | |
| tree | b15ec4c1364b527ac6337385b31998326ab85605 /src/ir_print.cpp | |
| parent | ef539696b9540cc45a4343f0fecdb4bbcb1a8a0e (diff) | |
Add `"pure"` procedure types
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 59bbadbfb..9a7b1e113 100644 --- a/src/ir_print.cpp +++ b/src/ir_print.cpp @@ -1434,6 +1434,7 @@ void ir_print_calling_convention(irFileBuffer *f, irModule *m, ProcCallingConven switch (cc) { case ProcCC_Odin: ir_write_str_lit(f, ""); break; case ProcCC_Contextless: ir_write_str_lit(f, ""); break; + case ProcCC_Pure: ir_write_str_lit(f, ""); break; // case ProcCC_CDecl: ir_write_str_lit(f, "ccc "); break; case ProcCC_CDecl: ir_write_str_lit(f, ""); break; case ProcCC_StdCall: ir_write_str_lit(f, "cc 64 "); break; |