Displaying 2 results from an estimated 2 matches for "parsevalid".
2014 Nov 27
2
[LLVMdev] Fast-math flags in constant expressions
......
%val = fmul nnan double 1.0, 1.0
...
but doesn't allow any flags if "fmul" is inside "phi":
...
%val = phi double [ fmul (double 1.0, double 1.0), %cond.true ],
[ fmul (double 1.0, double 1.0), %cond.false ]
...
LLParser::ParseValID(...) could call EatFastMathFlagsIfPresent() to
handle fast-math flags, but it doesn't. Is this intended or a bug?
Regards,
Sergey
2014 Dec 02
2
[LLVMdev] Fast-math flags in constant expressions
...doesn't allow any flags if "fmul" is inside "phi":
>>
>> ...
>> %val = phi double [ fmul (double 1.0, double 1.0), %cond.true ],
>> [ fmul (double 1.0, double 1.0), %cond.false ]
>> ...
>>
>> LLParser::ParseValID(...) could call EatFastMathFlagsIfPresent() to
>> handle fast-math flags, but it doesn't. Is this intended or a bug?
>>
>> Regards,
>> Sergey
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu http...