File tree Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Expand file tree Collapse file tree 2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -1536,9 +1536,6 @@ inline bool IsAlternateEntry(const Symbol *symbol) {
15361536 // symbol.
15371537 return symbol && GetMainEntry (symbol) != symbol;
15381538}
1539- inline bool IsAlternateEntry (const Symbol &symbol) {
1540- return IsAlternateEntry (&symbol);
1541- }
15421539
15431540// These functions are used in Evaluate so they are defined here rather than in
15441541// Semantics to avoid a link-time dependency on Semantics.
Original file line number Diff line number Diff line change @@ -2950,7 +2950,7 @@ static bool IsSubprogramDefinition(const Symbol &symbol) {
29502950
29512951static bool IsExternalProcedureDefinition (const Symbol &symbol) {
29522952 return IsBlockData (symbol) ||
2953- ((IsSubprogramDefinition (symbol) || IsAlternateEntry (symbol)) &&
2953+ ((IsSubprogramDefinition (symbol) || IsAlternateEntry (& symbol)) &&
29542954 (IsExternal (symbol) || symbol.GetBindName ()));
29552955}
29562956
You can’t perform that action at this time.
0 commit comments