mirror of
https://github.com/herumi/xbyak
synced 2024-11-20 16:06:14 -07:00
rename XBYAK_NOEXCEPTION to XBYAK_NO_EXCEPTION
This commit is contained in:
parent
7cdf227f25
commit
9cd796a9f1
5 changed files with 6 additions and 6 deletions
|
@ -22,7 +22,7 @@ class ErrorSample : public CodeGenerator {
|
|||
public:
|
||||
void gen()
|
||||
{
|
||||
#ifndef XBYAK_NOEXCEPTION
|
||||
#ifndef XBYAK_NO_EXCEPTION
|
||||
CYBOZU_TEST_EXCEPTION(mov(ptr[eax],1), std::exception);
|
||||
CYBOZU_TEST_EXCEPTION(test(ptr[eax],1), std::exception);
|
||||
CYBOZU_TEST_EXCEPTION(adc(ptr[eax],1), std::exception);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#define XBYAK_NOEXCEPTION
|
||||
#define XBYAK_NO_EXCEPTION
|
||||
#include <xbyak/xbyak.h>
|
||||
|
||||
using namespace Xbyak;
|
||||
|
|
|
@ -19,7 +19,7 @@ if /i "%1"=="Y" (
|
|||
set FILTER=normalize_prefix
|
||||
) else if /i "%1"=="noexcept" (
|
||||
set EXE=nasm.exe
|
||||
set OPT2=-DXBYAK32 -DXBYAK_NOEXCEPTION
|
||||
set OPT2=-DXBYAK32 -DXBYAK_NO_EXCEPTION
|
||||
set OPT3=win32
|
||||
) else (
|
||||
set EXE=nasm.exe
|
||||
|
@ -43,4 +43,4 @@ if /i "%Y%"=="1" (
|
|||
make_nm jit > nm.cpp
|
||||
cl -I../ -DXBYAK_TEST nm_frame.cpp %OPT% %OPT2%
|
||||
nm_frame |%FILTER% > x.lst
|
||||
diff -wb x.lst ok.lst && echo "ok"
|
||||
diff -wb x.lst ok.lst && echo "ok"
|
||||
|
|
|
@ -28,7 +28,7 @@ else if ($1 == "avx512") then
|
|||
else if ($1 == "noexcept") then
|
||||
echo "nasm(32bit) without exception"
|
||||
set EXE=nasm
|
||||
set OPT2="-DXBYAK32 -DXBYAK_NOEXCEPTION"
|
||||
set OPT2="-DXBYAK32 -DXBYAK_NO_EXCEPTION"
|
||||
set OPT3=win32
|
||||
else
|
||||
echo "nasm(32bit)"
|
||||
|
|
|
@ -255,7 +255,7 @@ inline const char *ConvertErrorToString(int err)
|
|||
return err <= ERR_INTERNAL ? errTbl[err] : "unknown err";
|
||||
}
|
||||
|
||||
#ifdef XBYAK_NOEXCEPTION
|
||||
#ifdef XBYAK_NO_EXCEPTION
|
||||
namespace local {
|
||||
|
||||
static XBYAK_TLS int l_err = 0;
|
||||
|
|
Loading…
Reference in a new issue