Lines Matching full: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.
306 StringRef Comments = CommentToEmit.str();
308 assert(Comments.back() == '\n' &&
311 // Emit a line of comments.
313 size_t Position = Comments.find('\n');
314 OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n';
316 Comments = Comments.substr(Position+1);
317 } while (!Comments.empty());
1235 // FIXME: Note the fixup comments for Thumb2 are completely bogus since the