search for: cmp_doubl

Displaying 1 result from an estimated 1 matches for "cmp_doubl".

Did you mean: cmp_double
2012 Dec 14
0
[LLVMdev] RTLIB::UO_F32
Hi Reed, Sorry about the off-list reply. I need to reset my list preferences. If I build: cmp.c: int cmp_single(float a) { return (a != a) ? 1 : 0; } int cmp_double(double a) { return (a != a) ? 1 : 0; } with clang -target mips-unknown -S cmp.c I get calls to __unordsf2 and __unorddf2. Pete