| 1229 | fl::s8x8 operator()(fl::s8x8 a, fl::s8x8 b) const { return a / b; } |
| 1230 | }; |
| 1231 | struct OpDivS16x16 { |
| 1232 | fl::s16x16 operator()(fl::s16x16 a, fl::s16x16 b) const { return a / b; } |
| 1233 | }; |
| 1234 | struct OpDivU16x16 { |
| 1235 | fl::u16x16 operator()(fl::u16x16 a, fl::u16x16 b) const { return a / b; } |
| 1236 | }; |
no outgoing calls
no test coverage detected