diff options
author | MITSUNARI Shigeo <[email protected]> | 2016-06-28 08:18:40 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2016-06-28 08:18:40 +0900 |
commit | 14df1f5deb63063f068194699b3182e89c50b3f5 (patch) | |
tree | dcf0c756bd10e4a122d6ed491e13ed5d92d716b0 /gen/avx_type.hpp | |
parent | 121fd858ccbb15e895d1f22ea732af841de43d48 (diff) | |
download | xbyak-14df1f5deb63063f068194699b3182e89c50b3f5.tar.gz xbyak-14df1f5deb63063f068194699b3182e89c50b3f5.zip |
rename T_SUPPORT_YMM to T_YMM
Diffstat (limited to 'gen/avx_type.hpp')
-rw-r--r-- | gen/avx_type.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gen/avx_type.hpp b/gen/avx_type.hpp index 58190ee..2134a32 100644 --- a/gen/avx_type.hpp +++ b/gen/avx_type.hpp @@ -13,7 +13,7 @@ enum { T_W1 = 1 << 12, T_EW0 = 1 << 13, T_EW1 = 1 << 14, - T_SUPPORT_YMM = 1 << 15 + T_YMM = 1 << 15 }; const int NONE = 256; // same as Xbyak::CodeGenerator::NONE @@ -69,9 +69,9 @@ std::string type2String(int type) if (!str.empty()) str += " | "; str += "T_EW1"; } - if (type & T_SUPPORT_YMM) { + if (type & T_YMM) { if (!str.empty()) str += " | "; - str += "T_SUPPORT_YMM"; + str += "T_YMM"; } return str; }
\ No newline at end of file |