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 {
167
167
// / Return either a Constant or nullptr for a given Value.
168
168
Constant *getConstantOrNull (Value *V) const ;
169
169
170
- // / Return a reference to the set of argument tracked functions.
171
- SmallPtrSetImpl<Function *> &getArgumentTrackedFunctions ();
172
-
173
170
// / Set the Lattice Value for the arguments of a specialization \p F.
174
171
// / If an argument is Constant then its lattice value is marked with the
175
172
// / 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> {
829
829
830
830
Constant *getConstantOrNull (Value *V) const ;
831
831
832
- SmallPtrSetImpl<Function *> &getArgumentTrackedFunctions () {
833
- return TrackingIncomingArguments;
834
- }
835
-
836
832
void setLatticeValueForSpecializationArguments (Function *F,
837
833
const SmallVectorImpl<ArgInfo> &Args);
838
834
@@ -2157,10 +2153,6 @@ Constant *SCCPSolver::getConstantOrNull(Value *V) const {
2157
2153
return Visitor->getConstantOrNull (V);
2158
2154
}
2159
2155
2160
- SmallPtrSetImpl<Function *> &SCCPSolver::getArgumentTrackedFunctions () {
2161
- return Visitor->getArgumentTrackedFunctions ();
2162
- }
2163
-
2164
2156
void SCCPSolver::setLatticeValueForSpecializationArguments (Function *F,
2165
2157
const SmallVectorImpl<ArgInfo> &Args) {
2166
2158
Visitor->setLatticeValueForSpecializationArguments (F, Args);
You can’t perform that action at this time.
0 commit comments