Home | History | Annotate | Download | only in MC

Lines Matching refs:Comments

85     // If we don't have any comments, just emit a \n.
110 /// GetCommentOS - Return a raw_ostream that comments can be written to.
111 /// Unlike AddComment, you are required to terminate comments with \n if you
115 return nulls(); // Discard comments unless in verbose asm mode.
293 StringRef Comments = CommentToEmit.str();
295 assert(Comments.back() == '\n' &&
298 // Emit a line of comments.
300 size_t Position = Comments.find('\n');
301 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
303 Comments = Comments.substr(Position+1);
304 } while (!Comments.empty());
1163 // FIXME: Note the fixup comments for Thumb2 are completely bogus since the