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
bded0535
Commit
bded0535
authored
Apr 19, 1999
by
Craig Burley
Committed by
Craig Burley
Apr 19, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix DATA repeat-count bug
From-SVN: r26554
parent
986b2f97
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
4 deletions
+33
-4
gcc/f/ChangeLog
+7
-0
gcc/f/news.texi
+19
-2
gcc/f/stb.c
+6
-1
gcc/f/version.c
+1
-1
No files found.
gcc/f/ChangeLog
View file @
bded0535
Tue Apr 20 01:15:25 1999 Craig Burley <craig@jcb-sc.com>
* stb.c (ffestb_R5282_): Convert DATA repeat count
to default INTEGER, to avoid problems downstream.
* version.c: Bump version.
Mon Apr 19 21:36:48 1999 Craig Burley <craig@jcb-sc.com>
Mon Apr 19 21:36:48 1999 Craig Burley <craig@jcb-sc.com>
* ste.c (ffeste_R819B): Start the loop before expanding
* ste.c (ffeste_R819B): Start the loop before expanding
...
...
gcc/f/news.texi
View file @
bded0535
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
@c
in
the
standalone
derivations
of
this
file
(
e
.
g
.
NEWS
).
@c
in
the
standalone
derivations
of
this
file
(
e
.
g
.
NEWS
).
@set
copyrights
-
news
1995
-
1999
@set
copyrights
-
news
1995
-
1999
@set
last
-
update
-
news
1999
-
04
-
17
@set
last
-
update
-
news
1999
-
04
-
20
@include
root
.
texi
@include
root
.
texi
...
@@ -176,6 +176,13 @@ Instead, it issues a diagnostic.
...
@@ -176,6 +176,13 @@ Instead, it issues a diagnostic.
@ifclear
USERVISONLY
@ifclear
USERVISONLY
@item
@item
Fix
@code
{
g77
}
so
it
properly
handles
@samp
{
DATA
A
/
@var
{
rpt
}
*
@var
{
val
}
/
},
where
@var
{
rpt
}
is
not
default
@code
{
INTEGER
},
such
as
@code
{
INTEGER
*
2
},
instead
of
producing
a
spurious
diagnostic
.
@end
ifclear
@ifclear
USERVISONLY
@item
The
@samp
{
-
ax
}
option
is
now
obeyed
when
compiling
Fortran
programs
.
The
@samp
{
-
ax
}
option
is
now
obeyed
when
compiling
Fortran
programs
.
(
It
is
passed
to
the
@file
{
f771
}
driver
.)
(
It
is
passed
to
the
@file
{
f771
}
driver
.)
@end
ifclear
@end
ifclear
...
@@ -218,12 +225,22 @@ now reliably aligns @emph{all} double-precision variables and arrays
...
@@ -218,12 +225,22 @@ now reliably aligns @emph{all} double-precision variables and arrays
on
Intel
x86
targets
.
on
Intel
x86
targets
.
@item
@item
A
substantial
portion
of
the
@code
{
g77
}
front
end
'
s
code
-
generation
component
was
rewritten
.
It
now
generates
code
using
facilities
more
robustly
supported
by
the
@code
{
gcc
}
back
end
.
One
effect
of
this
rewrite
is
that
some
codes
no
longer
produce
a
spurious
``
label
@var
{
lab
}
used
before
containing
binding
contour
''
message
.
@item
Support
for
the
@samp
{
-
fugly
}
option
has
been
removed
.
Support
for
the
@samp
{
-
fugly
}
option
has
been
removed
.
@ifclear
USERVISONLY
@ifclear
USERVISONLY
@item
@item
Improve
documentation
and
indexing
,
Improve
documentation
and
indexing
,
including
information
on
Year
2000
(
Y2K
)
compliance
.
including
information
on
Year
2000
(
Y2K
)
compliance
,
and
providing
more
information
on
internals
of
the
front
end
.
@end
ifclear
@end
ifclear
@ifclear
USERVISONLY
@ifclear
USERVISONLY
...
...
gcc/f/stb.c
View file @
bded0535
...
@@ -5707,7 +5707,12 @@ ffestb_R5282_ (ffelexToken ft, ffebld expr, ffelexToken t)
...
@@ -5707,7 +5707,12 @@ ffestb_R5282_ (ffelexToken ft, ffebld expr, ffelexToken t)
case
FFELEX_typeASTERISK
:
case
FFELEX_typeASTERISK
:
if
(
expr
==
NULL
)
if
(
expr
==
NULL
)
break
;
break
;
ffestb_local_
.
data
.
expr
=
expr
;
ffestb_local_
.
data
.
expr
=
ffeexpr_convert
(
expr
,
ft
,
t
,
FFEINFO_basictypeINTEGER
,
FFEINFO_kindtypeINTEGER1
,
0
,
FFETARGET_charactersizeNONE
,
FFEEXPR_contextLET
);
ffesta_tokens
[
1
]
=
ffelex_token_use
(
ft
);
ffesta_tokens
[
1
]
=
ffelex_token_use
(
ft
);
return
(
ffelexHandler
)
ffeexpr_rhs
return
(
ffelexHandler
)
ffeexpr_rhs
(
ffesta_output_pool
,
FFEEXPR_contextDATA
,
(
ffesta_output_pool
,
FFEEXPR_contextDATA
,
...
...
gcc/f/version.c
View file @
bded0535
const
char
*
ffe_version_string
=
"0.5.24-199904
19
"
;
const
char
*
ffe_version_string
=
"0.5.24-199904
20
"
;
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