aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2022-05-12 11:01:59 +0900
committerMITSUNARI Shigeo <[email protected]>2022-05-12 11:01:59 +0900
commit9ddf251f3daf94f2666ec959a5af231a800b5d3d (patch)
tree44d3c7eab8c80a89555fde0b0440771a30ff4160
parent905b31bab186045bcf7bbec917ba94d67d6db0fe (diff)
downloadxbyak-9ddf251f3daf94f2666ec959a5af231a800b5d3d.tar.gz
xbyak-9ddf251f3daf94f2666ec959a5af231a800b5d3d.zip
remove debug code
-rw-r--r--xbyak/xbyak_util.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/xbyak/xbyak_util.h b/xbyak/xbyak_util.h
index 27f37be..ab0bd57 100644
--- a/xbyak/xbyak_util.h
+++ b/xbyak/xbyak_util.h
@@ -93,7 +93,7 @@ class Type {
uint64_t L;
uint64_t H;
public:
- Type(uint64_t L = 0, uint64_t H = 0) : L(L), H(H) { printf("L=%lx H=%lx\n", L, H); }
+ Type(uint64_t L = 0, uint64_t H = 0) : L(L), H(H) { }
Type& operator&=(const Type& rhs)
{
L &= rhs.L;