From 554fd8c5195424bdbcabf5de30fdc183aba391bd Mon Sep 17 00:00:00 2001 From: upstream source tree Date: Sun, 15 Mar 2015 20:14:05 -0400 Subject: obtained gcc-4.6.4.tar.bz2 from upstream website; 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. --- gcc/testsuite/gcc.dg/fixed-point/operator-cond.c | 101 +++++++++++++++++++++++ 1 file changed, 101 insertions(+) create mode 100644 gcc/testsuite/gcc.dg/fixed-point/operator-cond.c (limited to 'gcc/testsuite/gcc.dg/fixed-point/operator-cond.c') diff --git a/gcc/testsuite/gcc.dg/fixed-point/operator-cond.c b/gcc/testsuite/gcc.dg/fixed-point/operator-cond.c new file mode 100644 index 000000000..94b0de0a9 --- /dev/null +++ b/gcc/testsuite/gcc.dg/fixed-point/operator-cond.c @@ -0,0 +1,101 @@ +/* { dg-do run } */ +/* { dg-options "-std=gnu99 -O0" } */ + +/* C99 6.5.15 Conditional operator. + Test with fixed-point operands. + Based on the test from ../dfp/. */ + +extern void abort (void); +volatile int yes, no; + +#define FUNC(TYPE,NAME,PF) \ +volatile TYPE NAME ## a, NAME ## b, NAME ## c; \ +void \ +init_ ## NAME () \ +{ \ + NAME ## b = 0.2 ## PF; \ + NAME ## c = 0.3 ## PF; \ + yes = 1; \ + no = 0; \ +} + +FUNC (short _Fract, sf, hr) +FUNC (_Fract, f, r) +FUNC (long _Fract, lf, lr) +FUNC (long long _Fract, llf, llr) +FUNC (unsigned short _Fract, usf, uhr) +FUNC (unsigned _Fract, uf, ur) +FUNC (unsigned long _Fract, ulf, ulr) +FUNC (long long _Fract, ullf, ullr) +FUNC (_Sat short _Fract, Ssf, hr) +FUNC (_Sat _Fract, Sf, r) +FUNC (_Sat long _Fract, Slf, lr) +FUNC (_Sat long long _Fract, Sllf, llr) +FUNC (_Sat unsigned short _Fract, Susf, uhr) +FUNC (_Sat unsigned _Fract, Suf, ur) +FUNC (_Sat unsigned long _Fract, Sulf, ulr) +FUNC (_Sat long long _Fract, Sullf, ullr) +FUNC (short _Accum, sa, hk) +FUNC (_Accum, a, k) +FUNC (long _Accum, la, lk) +FUNC (long long _Accum, lla, llk) +FUNC (unsigned short _Accum, usa, uhk) +FUNC (unsigned _Accum, ua, uk) +FUNC (unsigned long _Accum, ula, ulk) +FUNC (long long _Accum, ulla, ullk) +FUNC (_Sat short _Accum, Ssa, hk) +FUNC (_Sat _Accum, Sa, k) +FUNC (_Sat long _Accum, Sla, lk) +FUNC (_Sat long long _Accum, Slla, llk) +FUNC (_Sat unsigned short _Accum, Susa, uhk) +FUNC (_Sat unsigned _Accum, Sua, uk) +FUNC (_Sat unsigned long _Accum, Sula, ulk) +FUNC (_Sat long long _Accum, Sulla, ullk) + +int +main () +{ +#define TEST(NAME) \ + init_ ## NAME (); \ + NAME ## a = yes ? NAME ## b : NAME ## c; \ + if (NAME ## a != NAME ## b) \ + abort (); \ + NAME ## a = no ? NAME ## b : NAME ## c; \ + if (NAME ## a != NAME ## c) \ + abort (); + + TEST(sf) + TEST(f) + TEST(lf) + TEST(llf) + TEST(usf) + TEST(uf) + TEST(ulf) + TEST(ullf) + TEST(Ssf) + TEST(Sf) + TEST(Slf) + TEST(Sllf) + TEST(Susf) + TEST(Suf) + TEST(Sulf) + TEST(Sullf) + TEST(sa) + TEST(a) + TEST(la) + TEST(lla) + TEST(usa) + TEST(ua) + TEST(ula) + TEST(ulla) + TEST(Ssa) + TEST(Sa) + TEST(Sla) + TEST(Slla) + TEST(Susa) + TEST(Sua) + TEST(Sula) + TEST(Sulla) + + return 0; +} -- cgit v1.2.3