now that all operand printing happens to specified streams, we can

print function level inline asm with EmitInlineAsm instead of writing
it directly to "O".

llvm-svn: 100326
This commit is contained in:
Chris Lattner 2010-04-04 07:50:12 +00:00
parent 1198002c81
commit 462720b1b6
1 changed files with 0 additions and 5 deletions

View File

@ -1411,11 +1411,8 @@ void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
// Emit the inline asm to a temporary string so we can emit it through // Emit the inline asm to a temporary string so we can emit it through
// EmitInlineAsm. // EmitInlineAsm.
#if 0
SmallString<256> StringData; SmallString<256> StringData;
raw_svector_ostream OS(StringData); raw_svector_ostream OS(StringData);
#endif
raw_ostream &OS = O;
OS << '\t'; OS << '\t';
@ -1588,9 +1585,7 @@ void AsmPrinter::printInlineAsm(const MachineInstr *MI) const {
} }
OS << "\n"; OS << "\n";
#if 0
EmitInlineAsm(OS.str()); EmitInlineAsm(OS.str());
#endif
// Emit the #NOAPP end marker. This has to happen even if verbose-asm isn't // Emit the #NOAPP end marker. This has to happen even if verbose-asm isn't
// enabled, so we use EmitRawText. // enabled, so we use EmitRawText.