From 0e9c7005c876ab7e3c9a5aec84a8fd1fbc949466 Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Fri, 6 Nov 2009 15:44:00 -0800 Subject: [PATCH] Bug 525412 - remove the nonsensical 'no fastcall' check in lirasm, r=dvander. --HG-- extra : convert_revision : 280b05e48279a2dfa1226915ad8e96f0ef3a19ff --- js/src/lirasm/lirasm.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/js/src/lirasm/lirasm.cpp b/js/src/lirasm/lirasm.cpp index ae4b1a3a5b91..bc2ad950ac90 100644 --- a/js/src/lirasm/lirasm.cpp +++ b/js/src/lirasm/lirasm.cpp @@ -617,12 +617,8 @@ FragmentAssembler::assemble_call(const string &op) string abi = pop_front(mTokens); AbiKind _abi = ABI_CDECL; - if (abi == "fastcall") { -#ifdef NO_FASTCALL - bad("no fastcall support"); -#endif + if (abi == "fastcall") _abi = ABI_FASTCALL; - } else if (abi == "stdcall") _abi = ABI_STDCALL; else if (abi == "thiscall")