change a ton of code to not implicitly use the "O" raw_ostream
[oota-llvm.git] / utils / TableGen / AsmWriterInst.cpp
index 508e4530d09c2d6944cfe8e5c223a6112380d28a..b2228b037ddd7bea3353cc2010883f16ab3b76e7 100644 (file)
@@ -38,6 +38,7 @@ std::string AsmWriterOperand::getCode() const {
   std::string Result = Str + "(MI";
   if (MIOpNo != ~0U)
     Result += ", " + utostr(MIOpNo);
+  Result += ", O";
   if (!MiModifier.empty())
     Result += ", \"" + MiModifier + '"';
   return Result + "); ";