diff options
author | MITSUNARI Shigeo <[email protected]> | 2022-05-12 11:01:59 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2022-05-12 11:01:59 +0900 |
commit | 9ddf251f3daf94f2666ec959a5af231a800b5d3d (patch) | |
tree | 44d3c7eab8c80a89555fde0b0440771a30ff4160 | |
parent | 905b31bab186045bcf7bbec917ba94d67d6db0fe (diff) | |
download | xbyak-9ddf251f3daf94f2666ec959a5af231a800b5d3d.tar.gz xbyak-9ddf251f3daf94f2666ec959a5af231a800b5d3d.zip |
remove debug code
-rw-r--r-- | xbyak/xbyak_util.h | 2 |
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; |