remove mov32c because the function is in xbyak

dev
MITSUNARI Shigeo 8 years ago
parent eb8768f8c2
commit 5eb95ba20f
  1. 8
      src/fp_generator.hpp

@ -2070,14 +2070,6 @@ struct FpGenerator : Xbyak::CodeGenerator {
}
L("@@");
}
void mov32c(const Reg64& r, uint64_t c)
{
if (c & 0xffffffff00000000ULL) {
mov(r, c);
} else {
mov(Xbyak::Reg32(r.getIdx()), (uint32_t)c);
}
}
private:
FpGenerator(const FpGenerator&);
void operator=(const FpGenerator&);

Loading…
Cancel
Save