diff options
| -rw-r--r-- | llvm/lib/CodeGen/MIRPrinter.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MIRPrinter.cpp b/llvm/lib/CodeGen/MIRPrinter.cpp index 6c3c63f919a..58036016a1e 100644 --- a/llvm/lib/CodeGen/MIRPrinter.cpp +++ b/llvm/lib/CodeGen/MIRPrinter.cpp @@ -554,7 +554,8 @@ void MIPrinter::print(const MachineInstr &MI) { OS << TII->getName(MI.getOpcode()); if (isPreISelGenericOpcode(MI.getOpcode())) { assert(MI.getType() && "Generic instructions must have a type"); - OS << ' ' << *MI.getType(); + OS << ' '; + MI.getType()->print(OS, /*IsForDebug*/ false, /*NoDetails*/ true); } if (I < E) OS << ' '; |

