aboutsummaryrefslogtreecommitdiffstats
path: root/test/regression/krfun.c
Commit message (Collapse)AuthorAgeFilesLines
* Revised handling of old-style, K&R function definitionsXavier Leroy2016-06-241-0/+37
This commits handles the case where the argument is passed with a type different from the actual type of the argument, as in float f (x) float x; { return x; } "x" is passed with type "double", and must be converted to "float" at the beginning of the function.