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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
! { dg-do run }
! { dg-options "-fbackslash" }
character(kind=1,len=20) :: s1, t1
character(kind=4,len=20) :: s4, t4
call test (4_"ccc ", 4_"bbb", 4_"ccc", 4_"ddd")
call test (4_" \xACp ", 4_" \x900000 ", 4_" \xACp ", 4_"ddd")
call test (4_" \xACp ", 4_" \x900000 ", 4_" \xACp ", 4_"ddd")
call test2 (4_" \x900000 ", 4_" \xACp ", 4_"ddd")
contains
subroutine test(s4, t4, u4, v4)
character(kind=4,len=*) :: s4, t4, u4, v4
if (.not. (s4 >= t4)) call abort
if (.not. (s4 > t4)) call abort
if (.not. (s4 .ge. t4)) call abort
if (.not. (s4 .gt. t4)) call abort
if ( (s4 == t4)) call abort
if (.not. (s4 /= t4)) call abort
if ( (s4 .eq. t4)) call abort
if (.not. (s4 .ne. t4)) call abort
if ( (s4 <= t4)) call abort
if ( (s4 < t4)) call abort
if ( (s4 .le. t4)) call abort
if ( (s4 .lt. t4)) call abort
if (.not. (s4 >= u4)) call abort
if ( (s4 > u4)) call abort
if (.not. (s4 .ge. u4)) call abort
if ( (s4 .gt. u4)) call abort
if (.not. (s4 == u4)) call abort
if ( (s4 /= u4)) call abort
if (.not. (s4 .eq. u4)) call abort
if ( (s4 .ne. u4)) call abort
if (.not. (s4 <= u4)) call abort
if ( (s4 < u4)) call abort
if (.not. (s4 .le. u4)) call abort
if ( (s4 .lt. u4)) call abort
if ( (s4 >= v4)) call abort
if ( (s4 > v4)) call abort
if ( (s4 .ge. v4)) call abort
if ( (s4 .gt. v4)) call abort
if ( (s4 == v4)) call abort
if (.not. (s4 /= v4)) call abort
if ( (s4 .eq. v4)) call abort
if (.not. (s4 .ne. v4)) call abort
if (.not. (s4 <= v4)) call abort
if (.not. (s4 < v4)) call abort
if (.not. (s4 .le. v4)) call abort
if (.not. (s4 .lt. v4)) call abort
end subroutine test
subroutine test2(t4, u4, v4)
character(kind=4,len=*) :: t4, u4, v4
if (.not. (4_" \xACp " >= t4)) call abort
if (.not. (4_" \xACp " > t4)) call abort
if (.not. (4_" \xACp " .ge. t4)) call abort
if (.not. (4_" \xACp " .gt. t4)) call abort
if ( (4_" \xACp " == t4)) call abort
if (.not. (4_" \xACp " /= t4)) call abort
if ( (4_" \xACp " .eq. t4)) call abort
if (.not. (4_" \xACp " .ne. t4)) call abort
if ( (4_" \xACp " <= t4)) call abort
if ( (4_" \xACp " < t4)) call abort
if ( (4_" \xACp " .le. t4)) call abort
if ( (4_" \xACp " .lt. t4)) call abort
if (.not. (4_" \xACp " >= u4)) call abort
if ( (4_" \xACp " > u4)) call abort
if (.not. (4_" \xACp " .ge. u4)) call abort
if ( (4_" \xACp " .gt. u4)) call abort
if (.not. (4_" \xACp " == u4)) call abort
if ( (4_" \xACp " /= u4)) call abort
if (.not. (4_" \xACp " .eq. u4)) call abort
if ( (4_" \xACp " .ne. u4)) call abort
if (.not. (4_" \xACp " <= u4)) call abort
if ( (4_" \xACp " < u4)) call abort
if (.not. (4_" \xACp " .le. u4)) call abort
if ( (4_" \xACp " .lt. u4)) call abort
if ( (4_" \xACp " >= v4)) call abort
if ( (4_" \xACp " > v4)) call abort
if ( (4_" \xACp " .ge. v4)) call abort
if ( (4_" \xACp " .gt. v4)) call abort
if ( (4_" \xACp " == v4)) call abort
if (.not. (4_" \xACp " /= v4)) call abort
if ( (4_" \xACp " .eq. v4)) call abort
if (.not. (4_" \xACp " .ne. v4)) call abort
if (.not. (4_" \xACp " <= v4)) call abort
if (.not. (4_" \xACp " < v4)) call abort
if (.not. (4_" \xACp " .le. v4)) call abort
if (.not. (4_" \xACp " .lt. v4)) call abort
end subroutine test2
subroutine test3(t4, u4, v4)
character(kind=4,len=*) :: t4, u4, v4
if (.not. (4_" \xACp " >= 4_" \x900000 ")) call abort
if (.not. (4_" \xACp " > 4_" \x900000 ")) call abort
if (.not. (4_" \xACp " .ge. 4_" \x900000 ")) call abort
if (.not. (4_" \xACp " .gt. 4_" \x900000 ")) call abort
if ( (4_" \xACp " == 4_" \x900000 ")) call abort
if (.not. (4_" \xACp " /= 4_" \x900000 ")) call abort
if ( (4_" \xACp " .eq. 4_" \x900000 ")) call abort
if (.not. (4_" \xACp " .ne. 4_" \x900000 ")) call abort
if ( (4_" \xACp " <= 4_" \x900000 ")) call abort
if ( (4_" \xACp " < 4_" \x900000 ")) call abort
if ( (4_" \xACp " .le. 4_" \x900000 ")) call abort
if ( (4_" \xACp " .lt. 4_" \x900000 ")) call abort
if (.not. (4_" \xACp " >= 4_" \xACp ")) call abort
if ( (4_" \xACp " > 4_" \xACp ")) call abort
if (.not. (4_" \xACp " .ge. 4_" \xACp ")) call abort
if ( (4_" \xACp " .gt. 4_" \xACp ")) call abort
if (.not. (4_" \xACp " == 4_" \xACp ")) call abort
if ( (4_" \xACp " /= 4_" \xACp ")) call abort
if (.not. (4_" \xACp " .eq. 4_" \xACp ")) call abort
if ( (4_" \xACp " .ne. 4_" \xACp ")) call abort
if (.not. (4_" \xACp " <= 4_" \xACp ")) call abort
if ( (4_" \xACp " < 4_" \xACp ")) call abort
if (.not. (4_" \xACp " .le. 4_" \xACp ")) call abort
if ( (4_" \xACp " .lt. 4_" \xACp ")) call abort
if ( (4_" \xACp " >= 4_"ddd")) call abort
if ( (4_" \xACp " > 4_"ddd")) call abort
if ( (4_" \xACp " .ge. 4_"ddd")) call abort
if ( (4_" \xACp " .gt. 4_"ddd")) call abort
if ( (4_" \xACp " == 4_"ddd")) call abort
if (.not. (4_" \xACp " /= 4_"ddd")) call abort
if ( (4_" \xACp " .eq. 4_"ddd")) call abort
if (.not. (4_" \xACp " .ne. 4_"ddd")) call abort
if (.not. (4_" \xACp " <= 4_"ddd")) call abort
if (.not. (4_" \xACp " < 4_"ddd")) call abort
if (.not. (4_" \xACp " .le. 4_"ddd")) call abort
if (.not. (4_" \xACp " .lt. 4_"ddd")) call abort
end subroutine test3
end
|