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/gfortran.dg/intrinsic_sign_2.f90 | |
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/gfortran.dg/intrinsic_sign_2.f90')
-rw-r--r-- | gcc/testsuite/gfortran.dg/intrinsic_sign_2.f90 | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/intrinsic_sign_2.f90 b/gcc/testsuite/gfortran.dg/intrinsic_sign_2.f90 new file mode 100644 index 000000000..0bc9b07b8 --- /dev/null +++ b/gcc/testsuite/gfortran.dg/intrinsic_sign_2.f90 @@ -0,0 +1,69 @@ +! { dg-do run } +! Testcase for SIGN() with integer arguments +! Check that: +! + SIGN() evaluates its arguments only once +! + SIGN() works on large values +! + SIGN() works with parameter arguments +! Contributed by FX Coudert <fxcoudert@gmail.com> +program sign1 + implicit none + integer(kind=1), parameter :: one1 = 1_1, mone1 = -1_1 + integer(kind=2), parameter :: one2 = 1_2, mone2 = -1_2 + integer(kind=4), parameter :: one4 = 1_4, mone4 = -1_4 + integer(kind=8), parameter :: one8 = 1_8, mone8 = -1_8 + integer(kind=1) :: i1, j1 + integer(kind=2) :: i2, j2 + integer(kind=4) :: i4, j4 + integer(kind=8) :: i8, j8 + integer :: i = 1 + + i1 = huge(0_1) ; j1 = -huge(0_1) + if (sign(i1, j1) /= j1) call abort() + if (sign(j1, i1) /= i1) call abort() + if (sign(i1,one1) /= i1 .or. sign(j1,one1) /= i1) call abort() + if (sign(i1,mone1) /= j1 .or. sign(j1,mone1) /= j1) call abort() + + i2 = huge(0_2) ; j2 = -huge(0_2) + if (sign(i2, j2) /= j2) call abort() + if (sign(j2, i2) /= i2) call abort() + if (sign(i2,one2) /= i2 .or. sign(j2,one2) /= i2) call abort() + if (sign(i2,mone2) /= j2 .or. sign(j2,mone2) /= j2) call abort() + + i4 = huge(0_4) ; j4 = -huge(0_4) + if (sign(i4, j4) /= j4) call abort() + if (sign(j4, i4) /= i4) call abort() + if (sign(i4,one4) /= i4 .or. sign(j4,one4) /= i4) call abort() + if (sign(i4,mone4) /= j4 .or. sign(j4,mone4) /= j4) call abort() + + i8 = huge(0_8) ; j8 = -huge(0_8) + if (sign(i8, j8) /= j8) call abort() + if (sign(j8, i8) /= i8) call abort() + if (sign(i8,one8) /= i8 .or. sign(j8,one8) /= i8) call abort() + if (sign(i8,mone8) /= j8 .or. sign(j8,mone8) /= j8) call abort() + + if (sign(foo(i), 1) /= 1) call abort + if (sign(foo(i), -1) /= -2) call abort + if (sign(42, foo(i)) /= 42) call abort + if (sign(42, -foo(i)) /= -42) call abort + if (i /= 5) call abort + + if (sign(bar(), 1) /= 1) call abort + if (sign(bar(), -1) /= -2) call abort + if (sign(17, bar()) /= 17) call abort + if (sign(17, -bar()) /= -17) call abort + if (bar() /= 5) call abort + +contains + + integer function foo(i) + integer :: i + foo = i + i = i + 1 + end function + + integer function bar() + integer, save :: i = 0 + i = i + 1 + bar = i + end function +end |