blob: 835f54e17acb4befe8d0e37cc9235a5e7987b711 (
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
31
32
33
34
35
36
|
/* PR tree-optimization/85063 */
/* { dg-additional-options "-ftree-switch-conversion" } */
#include <stdlib.h>
#pragma omp declare target
static int __attribute__((noinline)) foo (int n)
{
switch (n & 3)
{
case 0: return 4;
case 1: return 3;
case 2: return 2;
default:
return 1;
}
}
#pragma omp end declare target
int
main (void)
{
int n[1];
n[0] = 4;
#pragma omp target
{
n[0] = foo (n[0]);
}
if (n[0] != 4)
abort ();
return 0;
}
|