File tree Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Expand file tree Collapse file tree 1 file changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -115,15 +115,6 @@ class MCSection {
115
115
// subsections.
116
116
SmallVector<std::pair<unsigned , FragList>, 1 > Subsections;
117
117
118
- // / State for tracking labels that don't yet have Fragments
119
- struct PendingLabel {
120
- MCSymbol* Sym;
121
- unsigned Subsection;
122
- PendingLabel (MCSymbol* Sym, unsigned Subsection = 0 )
123
- : Sym(Sym), Subsection(Subsection) {}
124
- };
125
- SmallVector<PendingLabel, 2 > PendingLabels;
126
-
127
118
protected:
128
119
// TODO Make Name private when possible.
129
120
StringRef Name;
@@ -208,10 +199,6 @@ class MCSection {
208
199
bool isVirtualSection () const { return IsVirtual; }
209
200
210
201
virtual StringRef getVirtualSectionKind () const ;
211
-
212
- // / Add a pending label for the requested subsection. This label will be
213
- // / associated with a fragment in flushPendingLabels()
214
- void addPendingLabel (MCSymbol* label, unsigned Subsection = 0 );
215
202
};
216
203
217
204
} // end namespace llvm
You can’t perform that action at this time.
0 commit comments