diff options
author | MITSUNARI Shigeo <[email protected]> | 2020-10-17 11:11:41 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2020-10-17 11:11:41 +0900 |
commit | 1f119a04ac5d6b5555a16af4398dcec47adaab8e (patch) | |
tree | cc7b9cee70f95fbf20fe1b21a2a0f3af0c75515d /test/make_nm.cpp | |
parent | 29bfd25ba35cad8d43f34f002c2db19f0c0285ec (diff) | |
download | xbyak-1f119a04ac5d6b5555a16af4398dcec47adaab8e.tar.gz xbyak-1f119a04ac5d6b5555a16af4398dcec47adaab8e.zip |
support [scale * reg]
Diffstat (limited to 'test/make_nm.cpp')
-rw-r--r-- | test/make_nm.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/make_nm.cpp b/test/make_nm.cpp index 47eb023..494d8ac 100644 --- a/test/make_nm.cpp +++ b/test/make_nm.cpp @@ -643,6 +643,7 @@ class Test { puts(isXbyak_ ? "out_(dx, al); dump();" : "out dx, al"); puts(isXbyak_ ? "out_(dx, ax); dump();" : "out dx, ax"); puts(isXbyak_ ? "out_(dx, eax); dump();" : "out dx, eax"); + puts(isXbyak_ ? "lea(eax, ptr[edi + 4 * eax]); dump();" : "lea eax, [edi + 4 * eax]"); } void putJmp() const { |