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.dg/fixed-point/bit-complement.c | |
download | cbb-gcc-4.6.4-upstream.tar.bz2 cbb-gcc-4.6.4-upstream.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.dg/fixed-point/bit-complement.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/fixed-point/bit-complement.c | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/fixed-point/bit-complement.c b/gcc/testsuite/gcc.dg/fixed-point/bit-complement.c new file mode 100644 index 000000000..76c20d0d4 --- /dev/null +++ b/gcc/testsuite/gcc.dg/fixed-point/bit-complement.c @@ -0,0 +1,76 @@ +/* { dg-do compile } */ +/* { dg-options "-std=gnu99" } */ + +/* C99 6.5.3 Unary ~. */ + +void test () +{ + short _Fract sf; + _Fract f; + long _Fract lf; + long long _Fract llf; + unsigned short _Fract usf; + unsigned _Fract uf; + unsigned long _Fract ulf; + unsigned long long _Fract ullf; + _Sat short _Fract Ssf; + _Sat _Fract Sf; + _Sat long _Fract Slf; + _Sat long long _Fract Sllf; + _Sat unsigned short _Fract Susf; + _Sat unsigned _Fract Suf; + _Sat unsigned long _Fract Sulf; + _Sat unsigned long long _Fract Sullf; + short _Accum sa; + _Accum a; + long _Accum la; + long long _Accum lla; + unsigned short _Accum usa; + unsigned _Accum ua; + unsigned long _Accum ula; + unsigned long long _Accum ulla; + _Sat short _Accum Ssa; + _Sat _Accum Sa; + _Sat long _Accum Sla; + _Sat long long _Accum Slla; + _Sat unsigned short _Accum Susa; + _Sat unsigned _Accum Sua; + _Sat unsigned long _Accum Sula; + _Sat unsigned long long _Accum Sulla; + + /* C99 Section 6.5.3.3 ~ shall have integer types. */ + + ~sf; /* { dg-error "wrong type argument to bit-complement" } */ + ~f; /* { dg-error "wrong type argument to bit-complement" } */ + ~lf; /* { dg-error "wrong type argument to bit-complement" } */ + ~llf; /* { dg-error "wrong type argument to bit-complement" } */ + ~usf; /* { dg-error "wrong type argument to bit-complement" } */ + ~uf; /* { dg-error "wrong type argument to bit-complement" } */ + ~ulf; /* { dg-error "wrong type argument to bit-complement" } */ + ~ullf; /* { dg-error "wrong type argument to bit-complement" } */ + ~Ssf; /* { dg-error "wrong type argument to bit-complement" } */ + ~Sf; /* { dg-error "wrong type argument to bit-complement" } */ + ~Slf; /* { dg-error "wrong type argument to bit-complement" } */ + ~Sllf; /* { dg-error "wrong type argument to bit-complement" } */ + ~Susf; /* { dg-error "wrong type argument to bit-complement" } */ + ~Suf; /* { dg-error "wrong type argument to bit-complement" } */ + ~Sulf; /* { dg-error "wrong type argument to bit-complement" } */ + ~Sullf; /* { dg-error "wrong type argument to bit-complement" } */ + ~sa; /* { dg-error "wrong type argument to bit-complement" } */ + ~a; /* { dg-error "wrong type argument to bit-complement" } */ + ~la; /* { dg-error "wrong type argument to bit-complement" } */ + ~lla; /* { dg-error "wrong type argument to bit-complement" } */ + ~usa; /* { dg-error "wrong type argument to bit-complement" } */ + ~ua; /* { dg-error "wrong type argument to bit-complement" } */ + ~ula; /* { dg-error "wrong type argument to bit-complement" } */ + ~ulla; /* { dg-error "wrong type argument to bit-complement" } */ + ~Ssa; /* { dg-error "wrong type argument to bit-complement" } */ + ~Sa; /* { dg-error "wrong type argument to bit-complement" } */ + ~Sla; /* { dg-error "wrong type argument to bit-complement" } */ + ~Slla; /* { dg-error "wrong type argument to bit-complement" } */ + ~Susa; /* { dg-error "wrong type argument to bit-complement" } */ + ~Sua; /* { dg-error "wrong type argument to bit-complement" } */ + ~Sula; /* { dg-error "wrong type argument to bit-complement" } */ + ~Sulla; /* { dg-error "wrong type argument to bit-complement" } */ + +} |