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
d8a6f584
Commit
d8a6f584
authored
Feb 04, 2002
by
Jason Merrill
Committed by
Jason Merrill
Feb 04, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* error.c (dump_type): Be more helpful about VECTOR_TYPE.
From-SVN: r49505
parent
2c79137a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
1 deletions
+12
-1
gcc/cp/ChangeLog
+4
-0
gcc/cp/error.c
+8
-1
No files found.
gcc/cp/ChangeLog
View file @
d8a6f584
2002-02-05 Jason Merrill <jason@redhat.com>
* error.c (dump_type): Be more helpful about VECTOR_TYPE.
2002-02-04 Jakub Jelinek <jakub@redhat.com>
* semantics.c (begin_switch_stmt): Clear SWITCH_TYPE.
...
...
gcc/cp/error.c
View file @
d8a6f584
...
...
@@ -382,7 +382,14 @@ dump_type (t, flags)
case
VECTOR_TYPE
:
output_add_string
(
scratch_buffer
,
"vector "
);
dump_type
(
TREE_TYPE
(
t
),
flags
);
{
/* The subtype of a VECTOR_TYPE is something like intQI_type_node,
which has no name and is not very useful for diagnostics. So
look up the equivalent C type and print its name. */
tree
elt
=
TREE_TYPE
(
t
);
elt
=
type_for_mode
(
TYPE_MODE
(
elt
),
TREE_UNSIGNED
(
elt
));
dump_type
(
elt
,
flags
);
}
break
;
case
INTEGER_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