Remove not needed __builtin_expect due to malloc predictor.
[official-gcc.git] / gcc / testsuite / gcc.target / sh / pr50749-sf-postinc-1.c
blob3da1cca565cee3e604ec6c260ce8c6b6dc6a9893
1 /* PR target/50749: Verify that post-increment addressing is generated. */
2 /* { dg-do compile { target { any_fpu } } } */
3 /* { dg-options "-O2" } */
4 /* { dg-final { scan-assembler-times "fmov.s\t@r\[0-9]\+\\+,fr\[0-9]\+" 1 } } */
6 float*
7 test_func_00 (float* p, float* x)
9 float r = 0;
10 r += *p++;
11 *x = r;
12 return p;