Home | History | Annotate | Download | only in IR

Lines Matching defs:Asm

1114     Out << "asm ";
1339 std::string Asm = M->getModuleInlineAsm();
1341 size_t NewLine = Asm.find_first_of('\n', CurPos);
1344 // We found a newline, print the portion of the asm string from the
1346 Out << "module asm \"";
1347 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
1351 NewLine = Asm.find_first_of('\n', CurPos);
1353 std::string rest(Asm.begin()+CurPos, Asm.end());
1355 Out << "module asm \"";