print function level inline asm with EmitInlineAsm instead of writing
it directly to "O".
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@100326
91177308-0d34-0410-b5e6-
96231b3b80d8
// Emit the inline asm to a temporary string so we can emit it through
// EmitInlineAsm.
-#if 0
SmallString<256> StringData;
raw_svector_ostream OS(StringData);
-#endif
- raw_ostream &OS = O;
OS << '\t';
}
OS << "\n";
-#if 0
EmitInlineAsm(OS.str());
-#endif
// Emit the #NOAPP end marker. This has to happen even if verbose-asm isn't
// enabled, so we use EmitRawText.