mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-15 03:00:30 +00:00
Bug 525412 - remove the nonsensical 'no fastcall' check in lirasm, r=dvander.
--HG-- extra : convert_revision : 280b05e48279a2dfa1226915ad8e96f0ef3a19ff
This commit is contained in:
parent
3a9f926349
commit
0e9c7005c8
@ -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")
|
||||
|
Loading…
Reference in New Issue
Block a user