Bug 525412 - remove the nonsensical 'no fastcall' check in lirasm, r=dvander.

--HG--
extra : convert_revision : 280b05e48279a2dfa1226915ad8e96f0ef3a19ff
This commit is contained in:
Graydon Hoare 2009-11-06 15:44:00 -08:00
parent 5ee0760ca7
commit 56de82afc0

View File

@ -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")