File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -410,7 +410,11 @@ class MCStreamer {
410
410
return MCSectionSubPair ();
411
411
}
412
412
413
- MCFragment *getCurrentFragment () const ;
413
+ MCFragment *getCurrentFragment () const {
414
+ assert (!getCurrentSection ().first ||
415
+ CurFrag->getParent () == getCurrentSection ().first );
416
+ return CurFrag;
417
+ }
414
418
415
419
// / Returns an index to represent the order a symbol was emitted in.
416
420
// / (zero if we did not emit that symbol)
Original file line number Diff line number Diff line change @@ -118,12 +118,6 @@ ArrayRef<MCDwarfFrameInfo> MCStreamer::getDwarfFrameInfos() const {
118
118
return DwarfFrameInfos;
119
119
}
120
120
121
- MCFragment *MCStreamer::getCurrentFragment () const {
122
- assert (!getCurrentSection ().first ||
123
- CurFrag->getParent () == getCurrentSection ().first );
124
- return CurFrag;
125
- }
126
-
127
121
void MCStreamer::emitRawComment (const Twine &T, bool TabPrefix) {}
128
122
129
123
void MCStreamer::addExplicitComment (const Twine &T) {}
You can’t perform that action at this time.
0 commit comments