]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gas/testsuite/gas/tic80/relocs2.c
* config/sh/tm-sh.h (BELIEVE_PCC_PROMOTION): Define, so that
[thirdparty/binutils-gdb.git] / gas / testsuite / gas / tic80 / relocs2.c
CommitLineData
dc40b391
FF
1extern char x_char;
2extern short x_short;
3static int x_int;
4extern long x_long;
5extern float x_float;
6extern double x_double;
7extern char *x_char_p;
8
9static char s_char;
10static short s_short;
11static int s_int;
12static long s_long;
13static float s_float;
14static double s_double;
15static char *s_char_p;
16
17char g_char;
18short g_short;
19int g_int;
20long g_long;
21float g_float;
22double g_double;
23char *g_char_p;
24
25main ()
26{
27 x_char = s_char;
28 g_char = x_char;
29 x_short = s_short;
30 g_short = x_short;
31 x_int = s_int;
32 g_int = x_int;
33 x_long = s_long;
34 g_long = x_long;
35 x_float = s_float;
36 g_float = x_float;
37 x_double = s_double;
38 g_double = x_double;
39 x_char_p = s_char_p;
40 g_char_p = x_char_p;
41}