File tree Expand file tree Collapse file tree 2 files changed +0
-11
lines changed
include/llvm/Transforms/Utils Expand file tree Collapse file tree 2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -167,9 +167,6 @@ class SCCPSolver {
167167 // / Return either a Constant or nullptr for a given Value.
168168 Constant *getConstantOrNull (Value *V) const ;
169169
170- // / Return a reference to the set of argument tracked functions.
171- SmallPtrSetImpl<Function *> &getArgumentTrackedFunctions ();
172-
173170 // / Set the Lattice Value for the arguments of a specialization \p F.
174171 // / If an argument is Constant then its lattice value is marked with the
175172 // / corresponding actual argument in \p Args. Otherwise, its lattice value
Original file line number Diff line number Diff line change @@ -829,10 +829,6 @@ class SCCPInstVisitor : public InstVisitor<SCCPInstVisitor> {
829829
830830 Constant *getConstantOrNull (Value *V) const ;
831831
832- SmallPtrSetImpl<Function *> &getArgumentTrackedFunctions () {
833- return TrackingIncomingArguments;
834- }
835-
836832 void setLatticeValueForSpecializationArguments (Function *F,
837833 const SmallVectorImpl<ArgInfo> &Args);
838834
@@ -2157,10 +2153,6 @@ Constant *SCCPSolver::getConstantOrNull(Value *V) const {
21572153 return Visitor->getConstantOrNull (V);
21582154}
21592155
2160- SmallPtrSetImpl<Function *> &SCCPSolver::getArgumentTrackedFunctions () {
2161- return Visitor->getArgumentTrackedFunctions ();
2162- }
2163-
21642156void SCCPSolver::setLatticeValueForSpecializationArguments (Function *F,
21652157 const SmallVectorImpl<ArgInfo> &Args) {
21662158 Visitor->setLatticeValueForSpecializationArguments (F, Args);
You can’t perform that action at this time.
0 commit comments