summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/asmjit/tools/tablegen-x86.js
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/asmjit/tools/tablegen-x86.js')
-rw-r--r--3rdparty/asmjit/tools/tablegen-x86.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/3rdparty/asmjit/tools/tablegen-x86.js b/3rdparty/asmjit/tools/tablegen-x86.js
index 91d9754278c..e58328e52b4 100644
--- a/3rdparty/asmjit/tools/tablegen-x86.js
+++ b/3rdparty/asmjit/tools/tablegen-x86.js
@@ -469,7 +469,7 @@ class X86TableGen extends core.TableGen {
// --------------------------------------------------------------------------
parse() {
- const data = this.dataOfFile("src/asmjit/x86/x86instdb.cpp");
+ const data = this.dataOfFile("asmjit/x86/x86instdb.cpp");
const re = new RegExp(
"INST\\(" +
"([A-Za-z0-9_]+)\\s*" + "," + // [01] Instruction.
@@ -777,10 +777,10 @@ class X86TableGen extends core.TableGen {
onBeforeRun() {
this.load([
- "src/asmjit/x86/x86globals.h",
- "src/asmjit/x86/x86instdb.cpp",
- "src/asmjit/x86/x86instdb.h",
- "src/asmjit/x86/x86instdb_p.h"
+ "asmjit/x86/x86globals.h",
+ "asmjit/x86/x86instdb.cpp",
+ "asmjit/x86/x86instdb.h",
+ "asmjit/x86/x86instdb_p.h"
]);
this.parse();
}