Update ChangeLog and version files for release
[official-gcc.git] / gcc / testsuite / gfortran.dg / char_comparison_1.f
blob02f69e07661a92e53fa31bae966c337046320923
1 C { dg-do run }
2 C { dg-options "-std=legacy" }
4 C PR 30525 - comparisons with padded spaces were done
5 C signed.
6 program main
7 character*2 c2
8 character*1 c1, c3, c4
10 C Comparison between char(255) and space padding
12 c2 = 'a' // char(255)
13 c1 = 'a'
14 if (.not. (c2 .gt. c1)) call abort
16 C Comparison between char(255) and space
18 c3 = ' '
19 c4 = char(255)
20 if (.not. (c4 .gt. c3)) call abort
23 C Check constant folding
25 if (.not. ('a' // char(255) .gt. 'a')) call abort
27 if (.not. (char(255) .gt. 'a')) call abort
28 end