Home | History | Annotate | Download | only in PTX

Lines Matching refs:Comments

61     // If we don't have any comments, just emit a \n.
86 /// GetCommentOS - Return a raw_ostream that comments can be written to.
87 /// Unlike AddComment, you are required to terminate comments with \n if you
91 return nulls(); // Discard comments unless in verbose asm mode.
210 StringRef Comments = CommentToEmit.str();
212 assert(Comments.back() == '\n' &&
215 // Emit a line of comments.
217 size_t Position = Comments.find('\n');
218 OS << MAI.getCommentString() << ' ' << Comments.substr(0, Position) << '\n';
220 Comments = Comments.substr(Position+1);
221 } while (!Comments.empty());