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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [gfortran.dg/] [generic_20.f90] - Blame information for rev 551

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 302 jeremybenn
! { dg-do run }
2
!
3
! PR fortran/39304
4
!
5
! matmul checking was checking the wrong specific function
6
! ("one" instead of "two")
7
!
8
module m
9
  implicit none
10
  interface one
11
    module procedure one, two
12
  end interface one
13
contains
14
  function one()
15
    real :: one(1)
16
    one = 0.0
17
  end function one
18
  function two(x)
19
    real :: x
20
    real :: two(1,1)
21
    two = reshape ( (/ x /), (/ 1, 1 /) )
22
  end function two
23
end module m
24
 
25
use m
26
real :: res(1)
27
res = matmul (one(2.0), (/ 2.0/))
28
if (abs (res(1)-4.0) > epsilon (res)) call abort ()
29
end
30
 
31
! { dg-final { cleanup-modules "m" } }

powered by: WebSVN 2.1.0

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