[WebAssembly] Rename floating-point operators to match their spec names.
[oota-llvm.git] / lib / Target / WebAssembly / WebAssemblyInstrFloat.td
index 570bf50cceae77e2f9ad24d363f22e57d970676d..456b2f69eb1ac37272ad38e7da8d887a69ca2491 100644 (file)
 ///
 //===----------------------------------------------------------------------===//
 
-defm FADD : BinaryFP<fadd>;
-defm FSUB : BinaryFP<fsub>;
-defm FMUL : BinaryFP<fmul>;
-defm FDIV : BinaryFP<fdiv>;
+defm ADD : BinaryFP<fadd>;
+defm SUB : BinaryFP<fsub>;
+defm MUL : BinaryFP<fmul>;
+defm DIV : BinaryFP<fdiv>;
 defm SQRT : UnaryFP<fsqrt>;
 
-defm FABS : UnaryFP<fabs>;
-defm FNEG : UnaryFP<fneg>;
+defm ABS : UnaryFP<fabs>;
+defm NEG : UnaryFP<fneg>;
 defm COPYSIGN : BinaryFP<fcopysign>;
 
 defm CEIL : UnaryFP<fceil>;