Home | History | Annotate | Download | only in MC

Lines Matching refs:Comments

83     // If we don't have any comments, just emit a \n.
108 /// GetCommentOS - Return a raw_ostream that comments can be written to.
109 /// Unlike AddComment, you are required to terminate comments with \n if you
113 return nulls(); // Discard comments unless in verbose asm mode.
289 StringRef Comments = CommentToEmit.str();
291 assert(Comments.back() == '\n' &&
294 // Emit a line of comments.
296 size_t Position = Comments.find('\n');
297 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
299 Comments = Comments.substr(Position+1);
300 } while (!Comments.empty());
1134 // FIXME: Note the fixup comments for Thumb2 are completely bogus since the