summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gfortran.dg/pr46755.f
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/gfortran.dg/pr46755.f')
-rw-r--r--gcc/testsuite/gfortran.dg/pr46755.f24
1 files changed, 24 insertions, 0 deletions
diff --git a/gcc/testsuite/gfortran.dg/pr46755.f b/gcc/testsuite/gfortran.dg/pr46755.f
new file mode 100644
index 000000000..adc57eb49
--- /dev/null
+++ b/gcc/testsuite/gfortran.dg/pr46755.f
@@ -0,0 +1,24 @@
+C { dg-do compile }
+C { dg-options "-O" }
+ IMPLICIT NONE
+ INTEGER I640,I760,I800
+ INTEGER I,ITER,ITMX,LENCM
+ LOGICAL QDISK,QDW
+ ASSIGN 801 TO I800 ! { dg-warning "Deleted feature: ASSIGN" "Deleted feature: ASSIGN" }
+
+ GOTO I800 ! { dg-warning "Deleted feature: Assigned" "Assigned GO TO" }
+ 801 CONTINUE
+ ASSIGN 761 TO I760 ! { dg-warning "Deleted feature: ASSIGN" "Deleted feature: ASSIGN" }
+ 761 CONTINUE
+ DO I=1,LENCM
+ ENDDO
+ DO WHILE(ITER.LT.ITMX)
+ IF(QDW) THEN
+ ASSIGN 641 to I640 ! { dg-warning "Deleted feature: ASSIGN" "Deleted feature: ASSIGN" }
+ GOTO I760 ! { dg-warning "Deleted feature: Assigned" "Assigned GO TO" }
+ 641 CONTINUE
+ ENDIF
+ ENDDO
+ RETURN
+ END
+