aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/validation/linear/builtin-fma.c
AgeCommit message (Collapse)AuthorFilesLines
2020-11-01fix usage count in linearize_fma()Luc Van Oostenryck1-1/+1
When linearizing __builtin_fma(), the arguments were just assigned but the corresponding usage was not tracked. Fix this. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
2020-09-07builtin: teach sparse to linearize __builtin_fma()Luc Van Oostenryck1-0/+19
The support for the linearization of builtins was already added for __builtin_unreachable() but this builtin has no arguments and no return value. So, to complete the experience of builtin linearization, add the linearization of __builtin_fma(). Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>