Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
e0757dda
Commit
e0757dda
authored
Jun 20, 2005
by
Steven G. Kargl
Committed by
Steven G. Kargl
Jun 20, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gfortran.dg/duplicate_labels.f90: New test.
From-SVN: r101215
parent
cb1d4dce
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
0 deletions
+63
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gfortran.dg/duplicate_labels.f90
+59
-0
No files found.
gcc/testsuite/ChangeLog
View file @
e0757dda
2005
-
06
-
20
Steven
G
.
Kargl
<
kargls
@comcast
.
net
>
*
gfortran
.
dg
/
duplicate_labels
.
f90
:
New
test
.
2005
-
06
-
20
Jan
Beulich
<
jbeulich
@novell
.
com
>
2005
-
06
-
20
Jan
Beulich
<
jbeulich
@novell
.
com
>
*
g
++
.
old
-
deja
/
g
++
.
jason
/
thunk2
.
C
:
On
NetWare
,
also
account
for
*
g
++
.
old
-
deja
/
g
++
.
jason
/
thunk2
.
C
:
On
NetWare
,
also
account
for
...
...
gcc/testsuite/gfortran.dg/duplicate_labels.f90
0 → 100644
View file @
e0757dda
! { dg-do compile }
! PR 21257
program
dups
integer
i
,
j
,
k
abc
:
do
i
=
1
,
3
abc
:
do
j
=
1
,
3
! { dg-error "Duplicate construct label" }
k
=
i
+
j
end
do
abc
end
do
abc
! { dg-error "Expecting END PROGRAM" }
xyz
:
do
i
=
1
,
2
k
=
i
+
2
end
do
xyz
xyz
:
do
j
=
1
,
5
! { dg-error "Duplicate construct label" }
k
=
j
+
2
end
do
loop
! { dg-error "Expecting END PROGRAM" }
her
:
if
(
i
==
1
)
then
her
:
if
(
j
==
1
)
then
! { dg-error "Duplicate construct label" }
k
=
i
+
j
end
if
her
end
if
her
! { dg-error "Expecting END PROGRAM" }
his
:
if
(
i
==
1
)
then
i
=
j
end
if
his
his
:
if
(
j
===
1
)
then
! { dg-error "Duplicate construct label" }
print
*
,
j
end
if
his
! { dg-error "Expecting END PROGRAM" }
sgk
:
select
case
(
i
)
case
(
1
)
sgk
:
select
case
(
j
)
! { dg-error "Duplicate construct label" }
case
(
10
)
i
=
i
+
j
case
(
20
)
j
=
j
+
i
end
select
sgk
case
(
2
)
! { dg-error "Unexpected CASE statement" }
i
=
i
+
1
j
=
j
+
1
end
select
sgk
! { dg-error "Expecting END PROGRAM" }
apl
:
select
case
(
i
)
case
(
1
)
k
=
2
case
(
2
)
j
=
1
end
select
apl
apl
:
select
case
(
i
)
! { dg-error "Duplicate construct label" }
case
(
1
)
! { dg-error "Unexpected CASE statement" }
j
=
2
case
(
2
)
! { dg-error "Unexpected CASE statement" }
k
=
1
end
select
apl
! { dg-error "Expecting END PROGRAM" }
end
program
dups
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment