diff options
| author | gingerBill <bill@gingerbill.org> | 2021-02-23 13:10:23 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-02-23 13:10:23 +0000 |
| commit | 28ed310f317d48835f089b6a6102259696b0f84c (patch) | |
| tree | 80ce57ddd4d997d75458c108ce858fac24f10349 /src/ir_print.cpp | |
| parent | a652c24ac3c8e592d413b3d3123e750fcaf314db (diff) | |
Remove `"pure"` and `"pure_none"` calling conventions
Diffstat (limited to 'src/ir_print.cpp')
| -rw-r--r-- | src/ir_print.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/ir_print.cpp b/src/ir_print.cpp index 5093b13e6..905d18b79 100644 --- a/src/ir_print.cpp +++ b/src/ir_print.cpp @@ -1451,13 +1451,11 @@ 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; 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); } } |