aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/transfer_simplify_10.f90
blob: 3a56e65a6cc25b7c03d0dae1d21fb2078decf06d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
! { dg-do run }
!
! PR fortran/46638
!
! Contributed by James Van Buskirk
!
program test5
   use ISO_C_BINDING
   implicit none
   type, bind(C) :: CPUID_type
      integer(C_INT32_T) eax
      integer(C_INT32_T) ebx
      integer(C_INT32_T) edx
      integer(C_INT32_T) ecx
      integer(C_INT32_T) bbb
   end type CPUID_type
   type(CPUID_TYPE) result
  result = transfer(achar(10)//achar(0)//achar(0)//achar(0)//'GenuineIntel'//'abcd',result)

  if((     int(z'0000000A') /= result%eax  &
      .or. int(z'756E6547') /= result%ebx  &
      .or. int(z'49656E69') /= result%edx  &
      .or. int(z'6C65746E') /= result%ecx  &
      .or. int(z'64636261') /= result%bbb) &
     .and. & ! Big endian
     (     int(z'0A000000') /= result%eax  &
      .or. int(z'47656E75') /= result%ebx  &
      .or. int(z'696E6549') /= result%edx  &
      .or. int(z'6E74656C') /= result%ecx  &
      .or. int(z'61626364') /= result%bbb)) then
    write(*,'(5(z8.8:1x))') result
    call abort()
  end if
end program test5