Home | History | Annotate | Download | only in IR

Lines Matching defs:Asm

1088     Out << "asm ";
1290 std::string Asm = M->getModuleInlineAsm();
1292 size_t NewLine = Asm.find_first_of('\n', CurPos);
1295 // We found a newline, print the portion of the asm string from the
1297 Out << "module asm \"";
1298 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
1302 NewLine = Asm.find_first_of('\n', CurPos);
1304 std::string rest(Asm.begin()+CurPos, Asm.end());
1306 Out << "module asm \"";