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
81c5baa0
Commit
81c5baa0
authored
Apr 24, 1999
by
Craig Burley
Committed by
Craig Burley
Apr 24, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix INTEGER*2 in DATA implied-DO
From-SVN: r26613
parent
29df9714
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
27 additions
and
14 deletions
+27
-14
gcc/f/ChangeLog
+9
-0
gcc/f/expr.c
+17
-13
gcc/f/version.c
+1
-1
No files found.
gcc/f/ChangeLog
View file @
81c5baa0
Sat Apr 24 12:19:53 1999 Craig Burley <craig@jcb-sc.com>
* expr.c (ffeexpr_finished_): Convert DATA implied-do
start/end/incr expressions to default INTEGER.
Fix some broken conditionals.
Clean up some code in the region.
* version.c: Bump version.
Fri Apr 23 02:08:32 1999 Craig Burley <craig@jcb-sc.com>
* g77.texi (Compiler Prototypes): Replace "missing" subscript-
...
...
gcc/f/expr.c
View file @
81c5baa0
...
...
@@ -12680,11 +12680,12 @@ again: /* :::::::::::::::::::: */
switch
(
ffeinfo_basictype
(
info
))
{
case
FFEINFO_basictypeLOGICAL
:
error
=
error
&&
!
ffe_is_ugly_logint
();
if
(
!
ffeexpr_stack_
->
is_rhs
)
break
;
/* Don't convert lhs variable. */
if
(
!
ffe_is_ugly_logint
())
error
=
TRUE
;
if
(
!
ffeexpr_stack_
->
is_rhs
)
break
;
expr
=
ffeexpr_convert
(
expr
,
ft
,
ft
,
FFEINFO_basictypeINTEGER
,
ffeinfo_kindtype
(
ffebld_info
(
expr
)
),
0
,
ffeinfo_kindtype
(
info
),
0
,
FFETARGET_charactersizeNONE
,
FFEEXPR_contextLET
);
break
;
...
...
@@ -12728,18 +12729,21 @@ again: /* :::::::::::::::::::: */
switch
(
ffeinfo_basictype
(
info
))
{
case
FFEINFO_basictypeLOGICAL
:
error
=
error
&&
(
ffeinfo_kindtype
(
info
)
!=
FFEINFO_kindtypeLOGICALDEFAULT
);
if
(
!
ffeexpr_stack_
->
is_rhs
)
break
;
/* Don't convert lhs variable. */
if
(
!
ffeexpr_stack_
->
is_rhs
)
break
;
expr
=
ffeexpr_convert
(
expr
,
ft
,
ft
,
FFEINFO_basictypeINTEGER
,
FFEINFO_kindtypeINTEGERDEFAULT
,
0
,
FFETARGET_charactersizeNONE
,
ffeinfo_kindtype
(
info
),
0
,
FFETARGET_charactersizeNONE
,
FFEEXPR_contextLET
);
break
;
/* Fall through. */
case
FFEINFO_basictypeINTEGER
:
error
=
error
&&
(
ffeinfo_kindtype
(
info
)
!=
FFEINFO_kindtypeINTEGERDEFAULT
);
if
(
ffeexpr_stack_
->
is_rhs
&&
(
ffeinfo_kindtype
(
ffebld_info
(
expr
))
!=
FFEINFO_kindtypeINTEGERDEFAULT
))
expr
=
ffeexpr_convert
(
expr
,
ft
,
ft
,
FFEINFO_basictypeINTEGER
,
FFEINFO_kindtypeINTEGERDEFAULT
,
0
,
FFETARGET_charactersizeNONE
,
FFEEXPR_contextLET
);
break
;
case
FFEINFO_basictypeHOLLERITH
:
...
...
gcc/f/version.c
View file @
81c5baa0
const
char
*
ffe_version_string
=
"0.5.24-1999042
3
"
;
const
char
*
ffe_version_string
=
"0.5.24-1999042
4
"
;
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