OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gfortran.dg/] [intrinsic_intkinds_1.f90] - Blame information for rev 694

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 694 jeremybenn
! { dg-do run }
2
! Test assorted intrinsics for integer kinds 1 and 2
3
program main
4
  integer(kind=1), dimension(2,2) :: a
5
  integer(kind=2), dimension(2,2) :: b
6
  integer(kind=1), dimension(2) :: r1
7
  integer(kind=2), dimension(2) :: r2
8
  logical, dimension(2,2) :: ma
9
  ma = .false.
10
  a = reshape((/ 1_1, 2_1, 3_1, 4_1/), shape(a))
11
  b = reshape((/ 1_2, 2_2, 3_2, 4_2/), shape(b))
12
  if (any(sum(a,dim=2) /= (/ 4, 6 /))) call abort
13
  if (any(sum(b,dim=2) /= (/ 4, 6 /))) call abort
14
  if (any(product(a,dim=2) /= (/ 3, 8 /))) call abort
15
  if (any(product(b,dim=2) /= (/ 3, 8 /))) call abort
16
  if (any(matmul(a,a) /= reshape ( (/ 7, 10, 15, 22 /), shape(a)))) call abort
17
  if (any(matmul(b,b) /= reshape ( (/ 7, 10, 15, 22 /), shape(b)))) call abort
18
  if (any(maxval(a,dim=2,mask=ma) /= -128)) call abort
19
  if (any(maxval(b,dim=2,mask=ma) /= -32768)) call abort
20
end program main

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.