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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gfortran.dg/] [extended_char_comparison_1.f] - Rev 816

Compare with Previous | Blame | View Log

! { dg-do run }
! PR 27715 - the front end and the library used to have different ideas
! about ordering for characters whose encoding is above 127.
 
      program main
      character*1 c1, c2
      logical a1, a2
      c1 = 'ç';
      c2 = 'c';
      a1 = c1 > c2;
      call setval(c1, c2)
      a2 = c1 > c2
      if (a1 .neqv. a2) call abort
      end
 
      subroutine setval(c1, c2)
      character*1 c1, c2
      c1 = 'ç';
      c2 = 'c';
      end
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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