From 28ed310f317d48835f089b6a6102259696b0f84c Mon Sep 17 00:00:00 2001 From: gingerBill Date: Tue, 23 Feb 2021 13:10:23 +0000 Subject: Remove `"pure"` and `"pure_none"` calling conventions --- src/parser.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/parser.cpp') diff --git a/src/parser.cpp b/src/parser.cpp index 4039c5dbe..7ae1810ec 100644 --- a/src/parser.cpp +++ b/src/parser.cpp @@ -3218,8 +3218,6 @@ Ast *parse_results(AstFile *f, bool *diverging) { ProcCallingConvention string_to_calling_convention(String s) { if (s == "odin") return ProcCC_Odin; if (s == "contextless") return ProcCC_Contextless; - if (s == "pure") return ProcCC_Pure; - if (s == "pure_none") return ProcCC_PureNone; if (s == "cdecl") return ProcCC_CDecl; if (s == "c") return ProcCC_CDecl; if (s == "stdcall") return ProcCC_StdCall; -- cgit v1.2.3