aboutsummaryrefslogtreecommitdiffhomepage
path: root/sample/test0.cpp
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2013-04-11 21:34:35 +0900
committerMITSUNARI Shigeo <[email protected]>2013-04-11 21:34:35 +0900
commit35bb4eac6e7e5df1463a2eb867f27c28a51807f1 (patch)
treef9b144db7926bd7035e927a72a53dbf4eecba129 /sample/test0.cpp
parentebea977d3b0e2caca641954d130340667cec481f (diff)
downloadxbyak-35bb4eac6e7e5df1463a2eb867f27c28a51807f1.tar.gz
xbyak-35bb4eac6e7e5df1463a2eb867f27c28a51807f1.zip
use XBYAK_NO_OP_NAMES
Diffstat (limited to 'sample/test0.cpp')
-rw-r--r--sample/test0.cpp2
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");