aboutsummaryrefslogtreecommitdiffhomepage
path: root/sample/test0.cpp
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2013-01-06 14:30:47 +0900
committerMITSUNARI Shigeo <[email protected]>2013-01-06 14:30:47 +0900
commit1009e09f6d5de8609077a39a3d83a3db100df7d2 (patch)
treec62a5b69faa6201fba6cbe1acf881d0b3f3aecd8 /sample/test0.cpp
parent8742fce5132ac0740beb5b71ea201f788523d0c2 (diff)
downloadxbyak-1009e09f6d5de8609077a39a3d83a3db100df7d2.tar.gz
xbyak-1009e09f6d5de8609077a39a3d83a3db100df7d2.zip
use xor_ instead of xor
Diffstat (limited to 'sample/test0.cpp')
-rw-r--r--sample/test0.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/sample/test0.cpp b/sample/test0.cpp
index 8acff9e..852b8c6 100644
--- a/sample/test0.cpp
+++ b/sample/test0.cpp
@@ -19,10 +19,10 @@ public:
#else
// n = ecx
#endif
- xor(eax, eax); // sum
+ xor_(eax, eax); // sum
test(ecx, ecx);
jz(".exit");
- xor(edx, edx); // i
+ xor_(edx, edx); // i
L(".lp");
add(eax, edx);
inc(edx);