Added ASMJIT_NOT_REACHED() to better deal with unreachable code.

Added Visual Studio 2015 scripts and fixed asmjit_test_x86 which now compiles under VS2015
Added StringLogger::getLength()
Added methods to X86Compiler to create a variable operand by its ID
This commit is contained in:
kobalicek
2016-01-02 16:24:54 +01:00
parent 9e100d11a1
commit b9b1ad6fae
13 changed files with 195 additions and 113 deletions

View File

@@ -2823,7 +2823,7 @@ struct X86Test_MiscUnfollow : public X86Test {
return resultRet == expectRet;
}
static ASMJIT_FASTCALL void handler() { longjmp(globalJmpBuf, 1); }
static void ASMJIT_FASTCALL handler() { longjmp(globalJmpBuf, 1); }
};
// ============================================================================