glasm: Add floating-point comparisons on GLASM

This commit is contained in:
ReinUsesLisp
2021-05-09 21:13:09 -03:00
committed by ameerj
parent 6705f56029
commit b4953e79ee
3 changed files with 116 additions and 120 deletions

View File

@ -281,18 +281,6 @@ void EmitGetInBoundsFromOp(EmitContext& ctx) {
NotImplemented();
}
void EmitFPIsNan16(EmitContext& ctx, Register value) {
NotImplemented();
}
void EmitFPIsNan32(EmitContext& ctx, ScalarF32 value) {
NotImplemented();
}
void EmitFPIsNan64(EmitContext& ctx, Register value) {
NotImplemented();
}
void EmitSharedAtomicIAdd32(EmitContext& ctx, ScalarU32 pointer_offset, ScalarU32 value) {
NotImplemented();
}