Had a quick look,
.if real4 ptr myReal4 < 1.0
.endif
will assemble, but it's not valid. It's generating a GPR cmp :
cmp real4 ptr myReal4, 0x......
which isn't going to be helpful.
So at present the supported modes are:
reg OP reg
reg OP float_immediate
reg OP [reg]
reg OP [expr]
reg OP variable
[reg] OP reg
[expr] OP reg
variable OP reg
These could be implemented relatively easily, by inverting the condition internally and swapping the comparison around.
[reg] OP [reg]
[reg] OP [expr]
[expr] OP [reg]
[reg] OP imm
variable OP imm
All these types would require some form of intermediate logic to set things up for the comparison, given it's hidden by the HLL it might be better to move the stuff around yourself as programmer to setup for a supported comparison mode above... I think .. :)