blob: 4d10a22de77f877af327bb59a9005f26ff40f28d (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* { dg-options "-fipa-modref -fipa-icf" } */
float fma_test1(float a, float b, float c) {
float x = a * b + c;
return x;
}
float fma_test2(float a, float b, float c) {
float x = a * b + c;
return x;
}
|