Exemple #1
0
void cgEqStrPtr(IRLS& env, const IRInstruction* inst) {
  assertx(inst->src(0)->type() <= TStr);
  assertx(inst->src(1)->type() <= TStr);
  implCmp(env, inst, CC_E);
}
Exemple #2
0
void cgEqArrayDataPtr(IRLS& env, const IRInstruction* inst) {
  assertx(inst->src(0)->type() <= TArrLike);
  assertx(inst->src(1)->type() <= TArrLike);
  implCmp(env, inst, CC_E);
}