Displaying 1 result from an estimated 1 matches for "i_fptoui".
2007 Sep 22
1
[LLVMdev] fptoui Semantics Question
I am a little confused by the results of the result of fptoui ... seems to
conflict with the instructions semantics as defined in the language
reference (http://llvm.org/docs/LangRef.html#i_fptoui):
%tmp1001 = fptoui float 1.0E+300 to i1 ; % yields tmp1001 = 0 on my
machine!
but the ref says:
%Y = fptoui float 1.0E+300 to i1 ; yields i1:true
(checked the return value with ... icmp eq i1 %tmp1001, 0 ... it is
returning true)
Any ideas? Probably a really dumb mistake on my pa...