aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/intrinsic_unpack_1.f90
diff options
context:
space:
mode:
authorBen Cheng <bccheng@google.com>2014-03-25 22:37:19 -0700
committerBen Cheng <bccheng@google.com>2014-03-25 22:37:19 -0700
commit1bc5aee63eb72b341f506ad058502cd0361f0d10 (patch)
treec607e8252f3405424ff15bc2d00aa38dadbb2518 /gcc-4.9/gcc/testsuite/gfortran.dg/intrinsic_unpack_1.f90
parent283a0bf58fcf333c58a2a92c3ebbc41fb9eb1fdb (diff)
downloadtoolchain_gcc-1bc5aee63eb72b341f506ad058502cd0361f0d10.tar.gz
toolchain_gcc-1bc5aee63eb72b341f506ad058502cd0361f0d10.tar.bz2
toolchain_gcc-1bc5aee63eb72b341f506ad058502cd0361f0d10.zip
Initial checkin of GCC 4.9.0 from trunk (r208799).
Change-Id: I48a3c08bb98542aa215912a75f03c0890e497dba
Diffstat (limited to 'gcc-4.9/gcc/testsuite/gfortran.dg/intrinsic_unpack_1.f90')
-rw-r--r--gcc-4.9/gcc/testsuite/gfortran.dg/intrinsic_unpack_1.f90135
1 files changed, 135 insertions, 0 deletions
diff --git a/gcc-4.9/gcc/testsuite/gfortran.dg/intrinsic_unpack_1.f90 b/gcc-4.9/gcc/testsuite/gfortran.dg/intrinsic_unpack_1.f90
new file mode 100644
index 000000000..47b9aef2e
--- /dev/null
+++ b/gcc-4.9/gcc/testsuite/gfortran.dg/intrinsic_unpack_1.f90
@@ -0,0 +1,135 @@
+! { dg-do run }
+! Program to test the UNPACK intrinsic for the types usually present.
+program intrinsic_unpack
+ implicit none
+ integer(kind=1), dimension(3, 3) :: a1, b1
+ integer(kind=2), dimension(3, 3) :: a2, b2
+ integer(kind=4), dimension(3, 3) :: a4, b4
+ integer(kind=8), dimension(3, 3) :: a8, b8
+ real(kind=4), dimension(3,3) :: ar4, br4
+ real(kind=8), dimension(3,3) :: ar8, br8
+ complex(kind=4), dimension(3,3) :: ac4, bc4
+ complex(kind=8), dimension(3,3) :: ac8, bc8
+ type i4_t
+ integer(kind=4) :: v
+ end type i4_t
+ type(i4_t), dimension(3,3) :: at4, bt4
+ type(i4_t), dimension(3) :: vt4
+
+ logical, dimension(3, 3) :: mask
+ character(len=500) line1, line2
+ integer i
+
+ mask = reshape ((/.false.,.true.,.false.,.true.,.false.,.false.,&
+ &.false.,.false.,.true./), (/3, 3/));
+ a1 = reshape ((/1, 0, 0, 0, 1, 0, 0, 0, 1/), (/3, 3/));
+ b1 = unpack ((/2_1, 3_1, 4_1/), mask, a1)
+ if (any (b1 .ne. reshape ((/1, 2, 0, 3, 1, 0, 0, 0, 4/), (/3, 3/)))) &
+ call abort
+ write (line1,'(10I4)') b1
+ write (line2,'(10I4)') unpack((/2_1, 3_1, 4_1/), mask, a1)
+ if (line1 .ne. line2) call abort
+ b1 = -1
+ b1 = unpack ((/2_1, 3_1, 4_1/), mask, 0_1)
+ if (any (b1 .ne. reshape ((/0, 2, 0, 3, 0, 0, 0, 0, 4/), (/3, 3/)))) &
+ call abort
+
+ a2 = reshape ((/1, 0, 0, 0, 1, 0, 0, 0, 1/), (/3, 3/));
+ b2 = unpack ((/2_2, 3_2, 4_2/), mask, a2)
+ if (any (b2 .ne. reshape ((/1, 2, 0, 3, 1, 0, 0, 0, 4/), (/3, 3/)))) &
+ call abort
+ write (line1,'(10I4)') b2
+ write (line2,'(10I4)') unpack((/2_2, 3_2, 4_2/), mask, a2)
+ if (line1 .ne. line2) call abort
+ b2 = -1
+ b2 = unpack ((/2_2, 3_2, 4_2/), mask, 0_2)
+ if (any (b2 .ne. reshape ((/0, 2, 0, 3, 0, 0, 0, 0, 4/), (/3, 3/)))) &
+ call abort
+
+ a4 = reshape ((/1, 0, 0, 0, 1, 0, 0, 0, 1/), (/3, 3/));
+ b4 = unpack ((/2_4, 3_4, 4_4/), mask, a4)
+ if (any (b4 .ne. reshape ((/1, 2, 0, 3, 1, 0, 0, 0, 4/), (/3, 3/)))) &
+ call abort
+ write (line1,'(10I4)') b4
+ write (line2,'(10I4)') unpack((/2_4, 3_4, 4_4/), mask, a4)
+ if (line1 .ne. line2) call abort
+ b4 = -1
+ b4 = unpack ((/2_4, 3_4, 4_4/), mask, 0_4)
+ if (any (b4 .ne. reshape ((/0, 2, 0, 3, 0, 0, 0, 0, 4/), (/3, 3/)))) &
+ call abort
+
+ a8 = reshape ((/1, 0, 0, 0, 1, 0, 0, 0, 1/), (/3, 3/));
+ b8 = unpack ((/2_8, 3_8, 4_8/), mask, a8)
+ if (any (b8 .ne. reshape ((/1, 2, 0, 3, 1, 0, 0, 0, 4/), (/3, 3/)))) &
+ call abort
+ write (line1,'(10I4)') b8
+ write (line2,'(10I4)') unpack((/2_8, 3_8, 4_8/), mask, a8)
+ if (line1 .ne. line2) call abort
+ b8 = -1
+ b8 = unpack ((/2_8, 3_8, 4_8/), mask, 0_8)
+ if (any (b8 .ne. reshape ((/0, 2, 0, 3, 0, 0, 0, 0, 4/), (/3, 3/)))) &
+ call abort
+
+ ar4 = reshape ((/1._4, 0._4, 0._4, 0._4, 1._4, 0._4, 0._4, 0._4, 1._4/), &
+ (/3, 3/));
+ br4 = unpack ((/2._4, 3._4, 4._4/), mask, ar4)
+ if (any (br4 .ne. reshape ((/1._4, 2._4, 0._4, 3._4, 1._4, 0._4, &
+ 0._4, 0._4, 4._4/), (/3, 3/)))) &
+ call abort
+ write (line1,'(9F9.5)') br4
+ write (line2,'(9F9.5)') unpack((/2._4, 3._4, 4._4/), mask, ar4)
+ if (line1 .ne. line2) call abort
+ br4 = -1._4
+ br4 = unpack ((/2._4, 3._4, 4._4/), mask, 0._4)
+ if (any (br4 .ne. reshape ((/0._4, 2._4, 0._4, 3._4, 0._4, 0._4, &
+ 0._4, 0._4, 4._4/), (/3, 3/)))) &
+ call abort
+
+ ar8 = reshape ((/1._8, 0._8, 0._8, 0._8, 1._8, 0._8, 0._8, 0._8, 1._8/), &
+ (/3, 3/));
+ br8 = unpack ((/2._8, 3._8, 4._8/), mask, ar8)
+ if (any (br8 .ne. reshape ((/1._8, 2._8, 0._8, 3._8, 1._8, 0._8, &
+ 0._8, 0._8, 4._8/), (/3, 3/)))) &
+ call abort
+ write (line1,'(9F9.5)') br8
+ write (line2,'(9F9.5)') unpack((/2._8, 3._8, 4._8/), mask, ar8)
+ if (line1 .ne. line2) call abort
+ br8 = -1._8
+ br8 = unpack ((/2._8, 3._8, 4._8/), mask, 0._8)
+ if (any (br8 .ne. reshape ((/0._8, 2._8, 0._8, 3._8, 0._8, 0._8, &
+ 0._8, 0._8, 4._8/), (/3, 3/)))) &
+ call abort
+
+ ac4 = reshape ((/1._4, 0._4, 0._4, 0._4, 1._4, 0._4, 0._4, 0._4, 1._4/), &
+ (/3, 3/));
+ bc4 = unpack ((/(2._4, 0._4), (3._4, 0._4), (4._4, 0._4)/), mask, ac4)
+ if (any (real(bc4) .ne. reshape ((/1._4, 2._4, 0._4, 3._4, 1._4, 0._4, &
+ 0._4, 0._4, 4._4/), (/3, 3/)))) &
+ call abort
+ write (line1,'(18F9.5)') bc4
+ write (line2,'(18F9.5)') unpack((/(2._4, 0._4), (3._4, 0._4), (4._4,0._4)/), &
+ mask, ac4)
+ if (line1 .ne. line2) call abort
+
+ ac8 = reshape ((/1._8, 0._8, 0._8, 0._8, 1._8, 0._8, 0._8, 0._8, 1._8/), &
+ (/3, 3/));
+ bc8 = unpack ((/(2._8, 0._8), (3._8, 0._8), (4._8, 0._8)/), mask, ac8)
+ if (any (real(bc8) .ne. reshape ((/1._8, 2._8, 0._8, 3._8, 1._8, 0._8, &
+ 0._8, 0._8, 4._8/), (/3, 3/)))) &
+ call abort
+ write (line1,'(18F9.5)') bc8
+ write (line2,'(18F9.5)') unpack((/(2._8, 0._8), (3._8, 0._8), (4._8,0._8)/), &
+ mask, ac8)
+ if (line1 .ne. line2) call abort
+
+ at4%v = reshape ((/1, 0, 0, 0, 1, 0, 0, 0, 1/), (/3, 3/));
+ vt4%v = (/2_4, 3_4, 4_4/)
+ bt4 = unpack (vt4, mask, at4)
+ if (any (bt4%v .ne. reshape ((/1, 2, 0, 3, 1, 0, 0, 0, 4/), (/3, 3/)))) &
+ call abort
+ bt4%v = -1
+ bt4 = unpack (vt4, mask, i4_t(0_4))
+ if (any (bt4%v .ne. reshape ((/0, 2, 0, 3, 0, 0, 0, 0, 4/), (/3, 3/)))) &
+ call abort
+
+end program