mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12:00
Add assert in build_function_asm to not ignore errors
This commit is contained in:
parent
d0057c92e4
commit
15efb73aae
1 changed files with 1 additions and 0 deletions
|
@ -89,6 +89,7 @@ inline FT build_function_asm(F&& builder)
|
||||||
|
|
||||||
X86Assembler compiler(&code);
|
X86Assembler compiler(&code);
|
||||||
builder(std::ref(compiler), args);
|
builder(std::ref(compiler), args);
|
||||||
|
ASSERT(compiler.getLastError() == 0);
|
||||||
|
|
||||||
FT result;
|
FT result;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue