diff options
Diffstat (limited to 'src/common/x64/emitter.h')
-rw-r--r-- | src/common/x64/emitter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/x64/emitter.h b/src/common/x64/emitter.h index 312e9dc19..aaebb56f6 100644 --- a/src/common/x64/emitter.h +++ b/src/common/x64/emitter.h @@ -532,7 +532,7 @@ public: void MOVSX(int dbits, int sbits, X64Reg dest, OpArg src); //automatically uses MOVSXD if necessary void MOVZX(int dbits, int sbits, X64Reg dest, OpArg src); - // Available only on Atom or >= Haswell so far. Test with cpu_info.bMOVBE. + // Available only on Atom or >= Haswell so far. Test with GetCPUCaps().movbe. void MOVBE(int dbits, const OpArg& dest, const OpArg& src); // Available only on AMD >= Phenom or Intel >= Haswell |