Home | History | Annotate | Download | only in VMCore

Lines Matching defs:Asm

1027     Out << "asm ";
1249 std::string Asm = M->getModuleInlineAsm();
1251 size_t NewLine = Asm.find_first_of('\n', CurPos);
1254 // We found a newline, print the portion of the asm string from the
1256 Out << "module asm \"";
1257 PrintEscapedString(std::string(Asm.begin()+CurPos, Asm.begin()+NewLine),
1261 NewLine = Asm.find_first_of('\n', CurPos);
1263 std::string rest(Asm.begin()+CurPos, Asm.end());
1265 Out << "module asm \"";