aboutsummaryrefslogtreecommitdiffhomepage
path: root/sample
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2024-09-29 19:46:11 +0900
committerMITSUNARI Shigeo <[email protected]>2024-09-29 19:46:11 +0900
commit4856dcca61daaea808a4e8050e4ecf678cabd93e (patch)
tree69d067d93230ced893cc38778076ff95baa6269e /sample
parent258500e81e072a9778cf8e80382c199ce81d146f (diff)
downloadxbyak-4856dcca61daaea808a4e8050e4ecf678cabd93e.tar.gz
xbyak-4856dcca61daaea808a4e8050e4ecf678cabd93e.zip
[sample] XBYAK_NO_OP_NAMES is no longer needed
Diffstat (limited to 'sample')
-rw-r--r--sample/bf.cpp1
-rw-r--r--sample/calc.cpp1
-rw-r--r--sample/calc2.cpp1
-rw-r--r--sample/jmp_table.cpp1
-rw-r--r--sample/memfunc.cpp1
-rw-r--r--sample/protect-re.cpp1
-rw-r--r--sample/quantize.cpp1
-rw-r--r--sample/stackframe.cpp1
-rw-r--r--sample/static_buf.cpp1
-rw-r--r--sample/test0.cpp1
-rw-r--r--sample/toyvm.cpp1
11 files changed, 0 insertions, 11 deletions
diff --git a/sample/bf.cpp b/sample/bf.cpp
index a7cb8c4..06f1dac 100644
--- a/sample/bf.cpp
+++ b/sample/bf.cpp
@@ -1,4 +1,3 @@
-#define XBYAK_NO_OP_NAMES
#include "xbyak/xbyak.h"
#include <stdio.h>
#include <stdlib.h>
diff --git a/sample/calc.cpp b/sample/calc.cpp
index 29ad9c3..d543d04 100644
--- a/sample/calc.cpp
+++ b/sample/calc.cpp
@@ -10,7 +10,6 @@
#include <stdio.h>
#include <sstream>
#include <map>
-#define XBYAK_NO_OP_NAMES
#include "xbyak/xbyak.h"
#ifdef _MSC_VER
#pragma warning(disable : 4127) // for boost(constant condition)
diff --git a/sample/calc2.cpp b/sample/calc2.cpp
index a13d2cf..62fb900 100644
--- a/sample/calc2.cpp
+++ b/sample/calc2.cpp
@@ -22,7 +22,6 @@
#include <assert.h>
#include <string>
#include <vector>
-#define XBYAK_NO_OP_NAMES
#include "xbyak/xbyak.h"
enum Operand {
diff --git a/sample/jmp_table.cpp b/sample/jmp_table.cpp
index fb47cac..4e0ca6e 100644
--- a/sample/jmp_table.cpp
+++ b/sample/jmp_table.cpp
@@ -2,7 +2,6 @@
sample of move(reg, LABEL);, L(LABEL), putL(LABEL);
*/
#include <stdio.h>
-#define XBYAK_NO_OP_NAMES
#include <xbyak/xbyak.h>
const int expectTbl[] = {
diff --git a/sample/memfunc.cpp b/sample/memfunc.cpp
index b97630b..65b0f04 100644
--- a/sample/memfunc.cpp
+++ b/sample/memfunc.cpp
@@ -1,7 +1,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <memory.h>
-#define XBYAK_NO_OP_NAMES
#include <xbyak/xbyak.h>
struct A {
diff --git a/sample/protect-re.cpp b/sample/protect-re.cpp
index 6eaa863..a8f77cd 100644
--- a/sample/protect-re.cpp
+++ b/sample/protect-re.cpp
@@ -1,4 +1,3 @@
-#define XBYAK_NO_OP_NAMES
#include <xbyak/xbyak.h>
struct Code1 : Xbyak::CodeGenerator {
diff --git a/sample/quantize.cpp b/sample/quantize.cpp
index ba0fd22..f45337c 100644
--- a/sample/quantize.cpp
+++ b/sample/quantize.cpp
@@ -42,7 +42,6 @@
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
-#define XBYAK_NO_OP_NAMES
#include "xbyak/xbyak.h"
#ifdef _MSC_VER
#pragma warning(disable : 4996) // scanf
diff --git a/sample/stackframe.cpp b/sample/stackframe.cpp
index 7405b40..f324bde 100644
--- a/sample/stackframe.cpp
+++ b/sample/stackframe.cpp
@@ -1,4 +1,3 @@
-#define XBYAK_NO_OP_NAMES
#include <xbyak/xbyak_util.h>
#ifdef XBYAK32
diff --git a/sample/static_buf.cpp b/sample/static_buf.cpp
index 0a8ff57..0d87101 100644
--- a/sample/static_buf.cpp
+++ b/sample/static_buf.cpp
@@ -2,7 +2,6 @@
sample to use static memory
*/
#include <stdio.h>
-#define XBYAK_NO_OP_NAMES
#include "xbyak/xbyak.h"
MIE_ALIGN(4096) char buf[4096];
diff --git a/sample/test0.cpp b/sample/test0.cpp
index afbaf83..924c816 100644
--- a/sample/test0.cpp
+++ b/sample/test0.cpp
@@ -7,7 +7,6 @@
#endif
#include <stdio.h>
#include <stdlib.h>
-#define XBYAK_NO_OP_NAMES
#include "xbyak/xbyak.h"
class Sample : public Xbyak::CodeGenerator {
diff --git a/sample/toyvm.cpp b/sample/toyvm.cpp
index dff0cb7..b6549a1 100644
--- a/sample/toyvm.cpp
+++ b/sample/toyvm.cpp
@@ -27,7 +27,6 @@
#include <stdlib.h>
#include <memory.h>
#include <vector>
-#define XBYAK_NO_OP_NAMES
#include "xbyak/xbyak.h"
#include "xbyak/xbyak_util.h"
#define NUM_OF_ARRAY(x) (sizeof(x) / sizeof(x[0]))