aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/arm/pr69245.c
blob: 58a6104e8f639a026f7b43645fcb80b182d3e0e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* PR target/69245 */
/* Test that pop_options restores the vfp fpu mode.  */
/* { dg-do compile } */
/* { dg-require-effective-target arm_neon_ok } */
/* { dg-require-effective-target arm_fp_ok } */
/* { dg-options "-O2" } */
/* { dg-add-options arm_fp } */

#pragma GCC target "fpu=vfp"

#pragma GCC push_options
#pragma GCC target "fpu=neon-vfpv4"
int a, c, d;
float b;
 int fn1 ()
{
  return 0;
}
#pragma GCC pop_options

void fn2 ()
{
  d = b * c + a;
}

/* Because we don't know the exact command-line options used to invoke the test
   we cannot expect these tests to match exactly once.  But they must appear at
   least once.  */
/* { dg-final { scan-assembler "\.fpu\\s+vfp\n" } } */
/* { dg-final { scan-assembler "\.fpu\\s+neon-vfpv4\n" } } */