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

References

lib/AsmParser/LLParser.cpp
 5356     FunctionName = Lex.getStrVal();
 5397       parseOptionalComdat(FunctionName, C) ||
 5440   if (!FunctionName.empty()) {
 5443     auto FRVI = ForwardRefVals.find(FunctionName);
 5445       Fn = M->getFunction(FunctionName);
 5451                      "function '" + FunctionName + "' with wrong type: "
 5455     } else if ((Fn = M->getFunction(FunctionName))) {
 5458                    FunctionName + "'");
 5459     } else if (M->getNamedValue(FunctionName)) {
 5460       return Error(NameLoc, "redefinition of function '@" + FunctionName + "'");
 5480                           FunctionName, M);
 5486   if (FunctionName.empty())
 5525   if (FunctionName.empty()) {
 5530     ID.StrVal = FunctionName;