Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/asmjit/asmjit.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorkobalicek <kobalicek.petr@gmail.com>2017-03-09 18:57:54 +0300
committerkobalicek <kobalicek.petr@gmail.com>2017-03-09 18:57:54 +0300
commite8a80ea95844d263c83267b862ea531fec8aa0f2 (patch)
tree9089f5748083297a00c9dc8a35a54313c71b7e61 /tools
parent0e80d2c3c36a790f09aa8bd2d021e8c32ab946a4 (diff)
Moved logic from x86inst.cpp to x86instimpl.cpp, moved some instruction methods to Inst from X86Inst, added Inst::checkFeatures() for retrieving which CPU features are required to run a given instruction, minor reorganization and asmdb update
Diffstat (limited to 'tools')
-rw-r--r--tools/generate-x86.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/generate-x86.js b/tools/generate-x86.js
index 764df71..976256c 100644
--- a/tools/generate-x86.js
+++ b/tools/generate-x86.js
@@ -1639,7 +1639,7 @@ class X86Generator extends base.BaseGenerator {
}
var s = `#define F(VAL) X86Inst::kFlag##VAL\n` +
- `#define JUMP_TYPE(VAL) AnyInst::kJumpType##VAL\n` +
+ `#define JUMP_TYPE(VAL) Inst::kJumpType##VAL\n` +
`#define SINGLE_REG(VAL) X86Inst::kSingleReg##VAL\n` +
`const X86Inst::CommonData X86InstDB::commonData[] = {\n${StringUtils.format(table, kIndent, true)}\n};\n` +
`#undef SINGLE_REG\n` +