diff options
author | upstream source tree <ports@midipix.org> | 2015-03-15 20:14:05 -0400 |
---|---|---|
committer | upstream source tree <ports@midipix.org> | 2015-03-15 20:14:05 -0400 |
commit | 554fd8c5195424bdbcabf5de30fdc183aba391bd (patch) | |
tree | 976dc5ab7fddf506dadce60ae936f43f58787092 /gcc/testsuite/gcc.target/mips/sdata-4.c | |
download | cbb-gcc-4.6.4-15d2061ac0796199866debe9ac87130894b0cdd3.tar.bz2 cbb-gcc-4.6.4-15d2061ac0796199866debe9ac87130894b0cdd3.tar.xz |
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig;
imported gcc-4.6.4 source tree from verified upstream tarball.
downloading a git-generated archive based on the 'upstream' tag
should provide you with a source tree that is binary identical
to the one extracted from the above tarball.
if you have obtained the source via the command 'git clone',
however, do note that line-endings of files in your working
directory might differ from line-endings of the respective
files in the upstream repository.
Diffstat (limited to 'gcc/testsuite/gcc.target/mips/sdata-4.c')
-rw-r--r-- | gcc/testsuite/gcc.target/mips/sdata-4.c | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.target/mips/sdata-4.c b/gcc/testsuite/gcc.target/mips/sdata-4.c new file mode 100644 index 000000000..7786c6db9 --- /dev/null +++ b/gcc/testsuite/gcc.target/mips/sdata-4.c @@ -0,0 +1,44 @@ +/* { dg-options "-G4 -mexplicit-relocs -mno-gpopt" } */ + +/* { dg-final { scan-assembler-not "%gp_?rel" } } */ +/* { dg-final { scan-assembler-not "\\\$gp" } } */ + +static int l4a; +static int l4b = 1; +static int __attribute__((section(".sdata"))) l4c; +extern int e4a; +extern int __attribute__((section(".sdata"))) e4b; +int __attribute__((common)) c4; +int __attribute__((nocommon)) g4a; +int g4b = 1; +int __attribute__((section(".sdata"))) g4c = 2; + +static int l8a[2]; +static int l8b[2] = { 1, 2 }; +static int __attribute__((section(".sdata"))) l8c[2]; +extern int e8a[2]; +extern int __attribute__((section(".sdata"))) e8b[2]; +int __attribute__((common)) c8[2]; +int __attribute__((nocommon)) g8a[2]; +int g8b[2] = { 1, 2 }; +int __attribute__((section(".sdata"))) g8c[2] = { 1, 2 }; + +int f32a (void) { return l4a; } +int f32b (void) { return l4b; } +int f32c (void) { return l4c; } +int f32d (void) { return e4a; } +int f32e (void) { return e4b; } +int f32f (void) { return c4; } +int f32g (void) { return g4a; } +int f32h (void) { return g4b; } +int f32i (void) { return g4c; } + +int f64a (void) { return l8a[0]; } +int f64b (void) { return l8b[0]; } +int f64c (void) { return l8c[0]; } +int f64d (void) { return e8a[0]; } +int f64e (void) { return e8b[0]; } +int f64f (void) { return c8[0]; } +int f64g (void) { return g8a[0]; } +int f64h (void) { return g8b[0]; } +int f64i (void) { return g8c[0]; } |