reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Sema/SemaDecl.cpp
13233   if (!FTI.hasPrototype) {
13234     for (int i = FTI.NumParams; i != 0; /* decrement in loop */) {
13236       if (FTI.Params[i].Param == nullptr) {
13239             << "  int " << FTI.Params[i].Ident->getName() << ";\n";
13240         Diag(FTI.Params[i].IdentLoc, diag::ext_param_not_declared)
13241             << FTI.Params[i].Ident
13250         DS.SetTypeSpecType(DeclSpec::TST_int, FTI.Params[i].IdentLoc, PrevSpec,
13253         DS.SetRangeStart(FTI.Params[i].IdentLoc);
13254         DS.SetRangeEnd(FTI.Params[i].IdentLoc);
13256         ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc);
13256         ParamD.SetIdentifier(FTI.Params[i].Ident, FTI.Params[i].IdentLoc);
13257         FTI.Params[i].Param = ActOnParamDeclarator(S, ParamD);