コード例 #1
0
ファイル: irgen-inlining.cpp プロジェクト: hafi4u/hhvm
void retFromInlined(IRGS& env) {
  auto const retVal = pop(env, DataTypeGeneric);
  endInlinedCommon(env);
  push(env, retVal);
}
コード例 #2
0
void retFromInlined(HTS& env, Type type) {
  auto const retVal = pop(env, type, DataTypeGeneric);
  endInlinedCommon(env);
  push(env, retVal);
}