diff options
author | MITSUNARI Shigeo <[email protected]> | 2013-04-11 21:34:35 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2013-04-11 21:34:35 +0900 |
commit | 35bb4eac6e7e5df1463a2eb867f27c28a51807f1 (patch) | |
tree | f9b144db7926bd7035e927a72a53dbf4eecba129 /sample/test0.cpp | |
parent | ebea977d3b0e2caca641954d130340667cec481f (diff) | |
download | xbyak-35bb4eac6e7e5df1463a2eb867f27c28a51807f1.tar.gz xbyak-35bb4eac6e7e5df1463a2eb867f27c28a51807f1.zip |
use XBYAK_NO_OP_NAMES
Diffstat (limited to 'sample/test0.cpp')
-rw-r--r-- | sample/test0.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sample/test0.cpp b/sample/test0.cpp index 1c0e710..c54ecc8 100644 --- a/sample/test0.cpp +++ b/sample/test0.cpp @@ -97,7 +97,7 @@ public: struct Reset : public Xbyak::CodeGenerator { void init(int n) { - xor(eax, eax); + xor_(eax, eax); mov(ecx, n); test(ecx, ecx); jnz("@f"); |