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
1d9ffce9
Commit
1d9ffce9
authored
Feb 10, 1998
by
Andrew Macleod
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add -fsquangle to option processing list.
From-SVN: r17829
parent
727e39c7
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletions
+8
-1
gcc/cp/decl2.c
+8
-1
No files found.
gcc/cp/decl2.c
View file @
1d9ffce9
...
...
@@ -416,11 +416,17 @@ int max_tinst_depth = 17;
/* The name-mangling scheme to use. Must be 1 or greater to support
template functions with identical types, but different template
arguments. */
int
name_mangling_version
=
1
;
int
name_mangling_version
=
2
;
/* Nonzero means that guiding declarations are allowed. */
int
flag_guiding_decls
;
/* Nonzero if squashed mangling is to be performed.
This uses the B and K codes to reference previously seen class types
and class qualifiers. */
int
flag_do_squangling
;
/* Table of language-dependent -f options.
STRING is the option name. VARIABLE is the address of the variable.
ON_VALUE is the value to store in VARIABLE
...
...
@@ -436,6 +442,7 @@ static struct { char *string; int *variable; int on_value;} lang_f_options[] =
{
"short-enums"
,
&
flag_short_enums
,
1
},
{
"short-double"
,
&
flag_short_double
,
1
},
{
"cond-mismatch"
,
&
flag_cond_mismatch
,
1
},
{
"squangle"
,
&
flag_do_squangling
,
1
},
{
"asm"
,
&
flag_no_asm
,
0
},
{
"builtin"
,
&
flag_no_builtin
,
0
},
{
"ident"
,
&
flag_no_ident
,
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