Skip to content

Commit ec94e7a

Browse files
committed
[MC] MCSection::dump: print section name
1 parent 1752740 commit ec94e7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/MC/MCSection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ void MCSection::flushPendingLabels() {
128128
LLVM_DUMP_METHOD void MCSection::dump() const {
129129
raw_ostream &OS = errs();
130130

131-
OS << "<MCSection";
131+
OS << "<MCSection Name:" << getName();
132132
OS << " Fragments:[\n ";
133133
for (auto it = begin(), ie = end(); it != ie; ++it) {
134134
if (it != begin())

0 commit comments

Comments
 (0)