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
a5f1c5f8
Commit
a5f1c5f8
authored
Jul 06, 2000
by
Nathan Sidwell
Committed by
Nathan Sidwell
Jul 06, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pt.c (tsubst): Don't layout type, if it's error_mark.
From-SVN: r34888
parent
c2e276fe
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
gcc/cp/ChangeLog
+4
-0
gcc/cp/pt.c
+4
-2
No files found.
gcc/cp/ChangeLog
View file @
a5f1c5f8
2000-07-06 Nathan Sidwell <nathan@codesourcery.com>
* pt.c (tsubst): Don't layout type, if it's error_mark.
2000-07-06 Nathan Sidwell <nathan@codesourcery.com>
* pt.c (instantiate_pending_templates): Reset template level.
2000-07-05 Jason Merrill <jason@redhat.com>
...
...
gcc/cp/pt.c
View file @
a5f1c5f8
...
...
@@ -6515,8 +6515,10 @@ tsubst (t, args, complain, in_decl)
r
=
build_reference_type
(
type
);
r
=
cp_build_qualified_type_real
(
r
,
TYPE_QUALS
(
t
),
complain
);
/* Will this ever be needed for TYPE_..._TO values? */
layout_type
(
r
);
if
(
r
!=
error_mark_node
)
/* Will this ever be needed for TYPE_..._TO values? */
layout_type
(
r
);
return
r
;
}
case
OFFSET_TYPE
:
...
...
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