aarch64: Add missing ACLE macro for NEON-SVE Bridge
[official-gcc.git] / gcc / testsuite / gfortran.dg / char_comparison_1.f
blob8622f55937ebf30659a99d6b473473576a966436
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)) STOP 1
16 C Comparison between char(255) and space
18 c3 = ' '
19 c4 = char(255)
20 if (.not. (c4 .gt. c3)) STOP 2
23 C Check constant folding
25 if (.not. ('a' // char(255) .gt. 'a')) STOP 3
27 if (.not. (char(255) .gt. 'a')) STOP 4
28 end