Home | History | Annotate | Download | only in MC

Lines Matching defs:Comments

76     // If we don't have any comments, just emit a \n.
104 /// GetCommentOS - Return a raw_ostream that comments can be written to.
105 /// Unlike AddComment, you are required to terminate comments with \n if you
109 return nulls(); // Discard comments unless in verbose asm mode.
274 StringRef Comments = CommentToEmit;
276 assert(Comments.back() == '\n' &&
279 // Emit a line of comments.
281 size_t Position = Comments.find('\n');
282 OS << MAI->getCommentString() << ' ' << Comments.substr(0, Position) <<'\n';
284 Comments = Comments.substr(Position+1);
285 } while (!Comments.empty());
1266 // FIXME: Note the fixup comments for Thumb2 are completely bogus since the