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
ec923185
Commit
ec923185
authored
May 15, 2008
by
Sa Liu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add new parameter to NAMED_INTCST and new field standard to struct intmod_sym.
From-SVN: r135340
parent
52191452
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
gcc/fortran/module.c
+4
-3
No files found.
gcc/fortran/module.c
View file @
ec923185
...
...
@@ -91,6 +91,7 @@ typedef struct
int
id
;
const
char
*
name
;
int
value
;
int
standard
;
}
intmod_sym
;
...
...
@@ -4771,13 +4772,13 @@ use_iso_fortran_env_module (void)
int
i
;
intmod_sym
symbol
[]
=
{
#define NAMED_INTCST(a,b,c
) { a, b, 0
},
#define NAMED_INTCST(a,b,c
,d) { a, b, 0, d
},
#include "iso-fortran-env.def"
#undef NAMED_INTCST
{
ISOFORTRANENV_INVALID
,
NULL
,
-
1234
}
};
{
ISOFORTRANENV_INVALID
,
NULL
,
-
1234
,
0
}
};
i
=
0
;
#define NAMED_INTCST(a,b,c) symbol[i++].value = c;
#define NAMED_INTCST(a,b,c
,d
) symbol[i++].value = c;
#include "iso-fortran-env.def"
#undef NAMED_INTCST
...
...
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