summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/shiftalr_1.F90
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/shiftalr_1.F90')
-rw-r--r--gcc/testsuite/gfortran.dg/shiftalr_1.F9020
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/testsuite/gfortran.dg/shiftalr_1.F90 b/gcc/testsuite/gfortran.dg/shiftalr_1.F90
index 9f2707bd96d..b5cae15d996 100644
--- a/gcc/testsuite/gfortran.dg/shiftalr_1.F90
+++ b/gcc/testsuite/gfortran.dg/shiftalr_1.F90
@@ -29,16 +29,16 @@
end interface
#define CHECK(I,SHIFT,RESA,RESL,RESR) \
- if (shifta(I,SHIFT) /= RESA) call abort ; \
- if (shiftr(I,SHIFT) /= RESR) call abort ; \
- if (shiftl(I,SHIFT) /= RESL) call abort ; \
- if (run_shifta(I,SHIFT) /= RESA) call abort ; \
- if (run_shiftr(I,SHIFT) /= RESR) call abort ; \
- if (run_shiftl(I,SHIFT) /= RESL) call abort ; \
- if (ishft(I,SHIFT) /= RESL) call abort ; \
- if (ishft(I,-SHIFT) /= RESR) call abort ; \
- if (run_ishft(I,SHIFT) /= RESL) call abort ; \
- if (run_ishft(I,-SHIFT) /= RESR) call abort
+ if (shifta(I,SHIFT) /= RESA) STOP 1; \
+ if (shiftr(I,SHIFT) /= RESR) STOP 2; \
+ if (shiftl(I,SHIFT) /= RESL) STOP 3; \
+ if (run_shifta(I,SHIFT) /= RESA) STOP 4; \
+ if (run_shiftr(I,SHIFT) /= RESR) STOP 5; \
+ if (run_shiftl(I,SHIFT) /= RESL) STOP 6; \
+ if (ishft(I,SHIFT) /= RESL) STOP 7; \
+ if (ishft(I,-SHIFT) /= RESR) STOP 8; \
+ if (run_ishft(I,SHIFT) /= RESL) STOP 9; \
+ if (run_ishft(I,-SHIFT) /= RESR) STOP 10
CHECK(0_1,0,0_1,0_1,0_1)
CHECK(11_1,0,11_1,11_1,11_1)