Lines Matching full:comments
80 // If we don't have any comments, just emit a \n.
105 /// GetCommentOS - Return a raw_ostream that comments can be written to.
106 /// Unlike AddComment, you are required to terminate comments with \n if you
110 return nulls(); // Discard comments unless in verbose asm mode.
283 StringRef Comments = CommentToEmit.str();
285 assert(Comments.back() == '\n' &&
288 // Emit a line of comments.
290 size_t Position = Comments.find('\n');
291 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
293 Comments = Comments.substr(Position+1);
294 } while (!Comments.empty());
1106 // FIXME: Note the fixup comments for Thumb2 are completely bogus since the