[WebAssembly] Remove special cases for things that are no longer special. NFC.
[oota-llvm.git] / lib / Target / WebAssembly / WebAssemblyAsmPrinter.cpp
index 7034892de8eb835c11bd072fd3f2d39ebfe25b92..6eb9ae6c5268950bf35f0676ee1c072e89b793ee 100644 (file)
@@ -271,28 +271,12 @@ void WebAssemblyAsmPrinter::EmitInstruction(const MachineInstr *MI) {
   case TargetOpcode::COPY:
     OS << "get_local push, " << regToString(MI->getOperand(1));
     break;
-  case WebAssembly::GLOBAL:
-    // TODO: wasm64
-    OS << "i32.const push, " << toSymbol(MI->getOperand(1).getGlobal()->getName());
-    break;
   case WebAssembly::ARGUMENT_I32:
   case WebAssembly::ARGUMENT_I64:
   case WebAssembly::ARGUMENT_F32:
   case WebAssembly::ARGUMENT_F64:
     OS << "get_local push, " << argToString(MI->getOperand(1));
     break;
-  case WebAssembly::Const_I32:
-    OS << "i32.const push, " << MI->getOperand(1).getImm();
-    break;
-  case WebAssembly::Const_I64:
-    OS << "i64.const push, " << MI->getOperand(1).getImm();
-    break;
-  case WebAssembly::Const_F32:
-    OS << "f32.const push, " << toString(MI->getOperand(1).getFPImm()->getValueAPF());
-    break;
-  case WebAssembly::Const_F64:
-    OS << "f64.const push, " << toString(MI->getOperand(1).getFPImm()->getValueAPF());
-    break;
   default: {
     OS << OpcodeName(TII, MI);
     bool NeedComma = false;