aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2015-04-25 07:28:16 +0900
committerMITSUNARI Shigeo <[email protected]>2015-04-25 07:28:16 +0900
commitae449d3a1630d6cb9d67d46263705d3800717f64 (patch)
treed2cf4e16b373953a8c00cb0afbb25fb03e56ec0a
parent8c4dc38a4aeb7871ac5f282082470a35c8f1e624 (diff)
downloadxbyak-ae449d3a1630d6cb9d67d46263705d3800717f64.tar.gz
xbyak-ae449d3a1630d6cb9d67d46263705d3800717f64.zip
add dq() for 8-byte data
-rw-r--r--xbyak/xbyak.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/xbyak/xbyak.h b/xbyak/xbyak.h
index ac4aa3f..ada3f63 100644
--- a/xbyak/xbyak.h
+++ b/xbyak/xbyak.h
@@ -729,6 +729,7 @@ public:
}
void dw(uint32 code) { db(code, 2); }
void dd(uint32 code) { db(code, 4); }
+ void dq(uint64 code) { db(code, 8); }
const uint8 *getCode() const { return top_; }
template<class F>
const F getCode() const { return CastTo<F>(top_); }