fma(double a, double x, double y)1 double fma(double a, double x, double y)
2 {
3 	return __builtin_fma(a, x, y);
4 }
5 
6 /*
7  * check-name: builtin-fma
8  * check-command: test-linearize -Wno-decl $file
9  *
10  * check-output-start
11 fma:
12 .L0:
13 	<entry-point>
14 	fmadd.64    %r4 <- %arg1, %arg2, %arg3
15 	ret.64      %r4
16 
17 
18  * check-output-end
19  */
20