Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gfortran.fortran-torture / execute / strcmp.f90
blob26980901c7e55d2e3466dd0003594eedc48ba865
1 program test
2 implicit none
3 character(len=20) :: foo
5 foo="hello"
7 if (llt(foo, "hello")) call abort
8 if (.not. lle(foo, "hello")) call abort
9 if (lgt("hello", foo)) call abort
10 if (.not. lge("hello", foo)) call abort
12 if (.not. llt(foo, "world")) call abort
13 if (.not. lle(foo, "world")) call abort
14 if (lgt(foo, "world")) call abort
15 if (lge(foo, "world")) call abort
16 end