[flang] Accept polymorphic component element in storage_size
[llvm-project.git] / flang / test / Evaluate / fold-char-cmp.f90
blob6fe5c7033621dae27a4ad941b43d3c0d74348805
1 ! RUN: %python %S/test_folding.py %s %flang_fc1
2 ! Tests folding of character comparisons
3 module m1
4 logical, parameter :: cases(*) = &
5 [ "" == "", "" == " " &
6 , "aaa" == "aaa", "aaa" == "aaa ", "aaa" /= "aab" &
7 , "aaa" <= "aaa", .not. "aaa" < "aaa", "aaa" < "aab", "aaa" >= "aaa" &
8 , .not. "aaa" > "aaa", .not. "aaa" >= "aab" &
9 , 4_"aaa" == 4_"aaa", 4_"aaa" == 4_"aaa ", 4_"aaa" /= 4_"aab" &
10 , 4_"aaa" <= 4_"aaa", .not. 4_"aaa" < 4_"aaa", 4_"aaa" < 4_"aab", 4_"aaa" >= 4_"aaa" &
11 , .not. 4_"aaa" > 4_"aaa", .not. 4_"aaa" >= 4_"aab" &
12 , lle("aaa", "aaa"), .not. llt("aaa", "aaa"), llt("aaa", "aab"), lge("aaa", "aaa") &
13 , .not. lgt("aaa", "aaa"), .not. lge("aaa", "aab") &
14 , lle("", ""), .not. llt("", ""), lge("", ""), .not. lgt("", "") &
16 logical, parameter :: test_cases = all(cases)
17 end module