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
a419ff54
Commit
a419ff54
authored
Jun 25, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(c_decode_option): Handle -fdollars-in-identifiers.
From-SVN: r4728
parent
816edf8b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
gcc/c-decl.c
+8
-0
No files found.
gcc/c-decl.c
View file @
a419ff54
...
...
@@ -540,6 +540,14 @@ c_decode_option (p)
flag_writable_strings
=
0
;
dollars_in_ident
=
DOLLARS_IN_IDENTIFIERS
>
1
;
}
else
if
(
!
strcmp
(
p
,
"-fdollars-in-identifiers"
))
{
#if DOLLARS_IN_IDENTIFIERS > 0
dollars_in_ident
=
1
;
#endif
}
else
if
(
!
strcmp
(
p
,
"-fnodollars-in-identifiers"
))
dollars_in_ident
=
0
;
else
if
(
!
strcmp
(
p
,
"-fsigned-char"
))
flag_signed_char
=
1
;
else
if
(
!
strcmp
(
p
,
"-funsigned-char"
))
...
...
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