diff options
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td b/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td index 30ef6339d65..b6c09be83a3 100644 --- a/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td +++ b/llvm/lib/Target/WebAssembly/WebAssemblyInstrFloat.td @@ -19,10 +19,14 @@ defm FDIV : BinaryFP<fdiv>; defm FABS : UnaryFP<fabs>; defm FNEG : UnaryFP<fneg>; defm COPYSIGN : BinaryFP<fcopysign>; -defm CEIL : UnaryFP<fceil>; -defm FLOOR : UnaryFP<ffloor>; -defm TRUNC : UnaryFP<ftrunc>; -defm NEARESTINT : UnaryFP<fnearbyint>; + +/* + * TODO(jfb): add and test these: + * defm CEIL : UnaryFP<fceil>; + * defm FLOOR : UnaryFP<ffloor>; + * defm TRUNC : UnaryFP<ftrunc>; + * defm NEARESTINT : UnaryFP<fnearbyint>; + */ /* * TODO(jfb): Add the following for 32-bit and 64-bit. |