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
55b4742b
Commit
55b4742b
authored
Sep 23, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(flag_allow_single_precision): New variable.
(c_decode_option): Handle -fallow-single-precision. From-SVN: r5425
parent
0e032109
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
gcc/c-decl.c
+6
-0
No files found.
gcc/c-decl.c
View file @
55b4742b
...
...
@@ -437,6 +437,10 @@ int flag_no_nonansi_builtin;
int
flag_traditional
;
/* Nonzero means to allow single precision math even if we're generally
being traditional. */
int
flag_allow_single_precision
=
0
;
/* Nonzero means to treat bitfields as signed unless they say `unsigned'. */
int
flag_signed_bitfields
=
1
;
...
...
@@ -537,6 +541,8 @@ c_decode_option (p)
dollars_in_ident
=
1
;
#endif
}
else
if
(
!
strcmp
(
p
,
"-fallow-single-precision"
))
flag_allow_single_precision
=
1
;
else
if
(
!
strcmp
(
p
,
"-fnotraditional"
)
||
!
strcmp
(
p
,
"-fno-traditional"
))
{
flag_traditional
=
0
;
...
...
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