link to pull/82

update-fork
MITSUNARI Shigeo 4 years ago
parent 5b221f05eb
commit 4a23b96b30
  1. 2
      src/gen.cpp

@ -671,6 +671,8 @@ struct Code : public mcl::Generator {
Operand y(Int, unit); Operand y(Int, unit);
std::string name = "mulPv" + cybozu::itoa(bit) + "x" + cybozu::itoa(unit); std::string name = "mulPv" + cybozu::itoa(bit) + "x" + cybozu::itoa(unit);
mulPvM[bit] = Function(name, z, px, y); mulPvM[bit] = Function(name, z, px, y);
// workaround at https://github.com/herumi/mcl/pull/82
// mulPvM[bit].setPrivate();
verifyAndSetPrivate(mulPvM[bit]); verifyAndSetPrivate(mulPvM[bit]);
beginFunc(mulPvM[bit]); beginFunc(mulPvM[bit]);
OperandVec L(N), H(N); OperandVec L(N), H(N);

Loading…
Cancel
Save