Index: lib/Analysis/LazyCallGraph.cpp =================================================================== --- lib/Analysis/LazyCallGraph.cpp +++ lib/Analysis/LazyCallGraph.cpp @@ -187,6 +187,17 @@ addEdge(EntryEdges.Edges, EntryEdges.EdgeIndexMap, get(F), LazyCallGraph::Edge::Ref); }); + + // Functions has alias are also reachable. + for (auto &A : M.aliases()) { + if (A.hasLocalLinkage()) + continue; + if (Function* F = dyn_cast(A.getAliasee())) { + LLVM_DEBUG(dbgs() << " Adding '" << F->getName() + << "' to entry set of the graph.\n"); + addEdge(EntryEdges.Edges, EntryEdges.EdgeIndexMap, get(*F), Edge::Ref); + } + } } LazyCallGraph::LazyCallGraph(LazyCallGraph &&G) Index: test/Analysis/LazyCallGraph/alias.ll =================================================================== --- test/Analysis/LazyCallGraph/alias.ll +++ test/Analysis/LazyCallGraph/alias.ll @@ -0,0 +1,29 @@ +; RUN: opt -disable-output -passes=print-lcg %s 2>&1 | FileCheck %s +; +; Aliased function should be reachable in CGSCC. + +target triple = "x86_64-grtev4-linux-gnu" + +; CHECK: RefSCC with 1 call SCCs: +; CHECK-NEXT: SCC with 1 functions: +; CHECK-NEXT: bar + +; CHECK: RefSCC with 1 call SCCs: +; CHECK-NEXT: SCC with 1 functions: +; CHECK-NEXT: foo + + +@alias1 = weak dso_local alias i8* (i8*), i8* (i8*)* @foo + +; Function Attrs: nounwind uwtable +define dso_local i8* @foo(i8* %returned) { + ret i8* %returned +} + +@alias2 = weak dso_local alias i8* (i8*), i8* (i8*)* @bar + +; Function Attrs: nounwind uwtable +define internal i8* @bar(i8* %returned) { + ret i8* %returned +} +