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
0a73e37f
Commit
0a73e37f
authored
Jun 28, 2004
by
Mark Mitchell
Committed by
Mark Mitchell
Jun 28, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* parser.c (cp_parser_set_decl_spec_type): Fix thinko.
From-SVN: r83764
parent
986ca4b1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletions
+13
-1
gcc/cp/ChangeLog
+4
-0
gcc/cp/parser.c
+9
-1
No files found.
gcc/cp/ChangeLog
View file @
0a73e37f
2004-06-28 Mark Mitchell <mark@codesourcery.com>
* parser.c (cp_parser_set_decl_spec_type): Fix thinko.
2004-06-27 Gabriel Dos Reis <gdr@integrable-solutions.net>
PR c++/14123
...
...
gcc/cp/parser.c
View file @
0a73e37f
...
...
@@ -15439,13 +15439,21 @@ cp_parser_set_decl_spec_type (cp_decl_specifier_seq *decl_specs,
||
decl_specs
->
specs
[(
int
)
ds_short
]
||
decl_specs
->
specs
[(
int
)
ds_unsigned
]
||
decl_specs
->
specs
[(
int
)
ds_signed
]))
decl_specs
->
redefined_builtin_type
=
type_spec
;
{
decl_specs
->
redefined_builtin_type
=
type_spec
;
if
(
!
decl_specs
->
type
)
{
decl_specs
->
type
=
type_spec
;
decl_specs
->
user_defined_type_p
=
false
;
}
}
else
if
(
decl_specs
->
type
)
decl_specs
->
multiple_types_p
=
true
;
else
{
decl_specs
->
type
=
type_spec
;
decl_specs
->
user_defined_type_p
=
user_defined_p
;
decl_specs
->
redefined_builtin_type
=
NULL_TREE
;
}
}
...
...
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