Home | History | Annotate | Download | only in IR

Lines Matching refs:NewLine

1341     size_t NewLine = Asm.find_first_of('\n', CurPos);
1343 while (NewLine != std::string::npos) {
1344 // We found a newline, print the portion of the asm string from the
1345 // last newline up to this newline.
1347 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
1350 CurPos = NewLine+1;
1351 NewLine = Asm.find_first_of('\n', CurPos);