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
4e5a8d7b
Commit
4e5a8d7b
authored
May 20, 1998
by
Jason Merrill
Committed by
Jason Merrill
May 20, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dwarf2out.c (base_type_die): Use int_size_in_bytes.
From-SVN: r19911
parent
ce1b9eb9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
gcc/ChangeLog
+4
-4
gcc/dwarf2out.c
+1
-1
No files found.
gcc/ChangeLog
View file @
4e5a8d7b
1998-05-20 Jason Merrill <jason@yorick.cygnus.com>
* dwarf2out.c (base_type_die): Use int_size_in_bytes.
Wed May 20 01:11:02 1998 Doug Evans (devans@cygnus.com)
Wed May 20 01:11:02 1998 Doug Evans (devans@cygnus.com)
Jeff Law (law@cygnus.com)
Jeff Law (law@cygnus.com)
...
@@ -9908,7 +9912,3 @@ Mon Aug 11 10:04:49 1997 Jeffrey A Law (law@cygnus.com)
...
@@ -9908,7 +9912,3 @@ Mon Aug 11 10:04:49 1997 Jeffrey A Law (law@cygnus.com)
Sun Aug 10 12:00:20 1997 Jeffrey A Law (law@cygnus.com)
Sun Aug 10 12:00:20 1997 Jeffrey A Law (law@cygnus.com)
* egcs project officially starts.
* egcs project officially starts.
Local Variables:
add-log-time-format: current-time-string
End:
gcc/dwarf2out.c
View file @
4e5a8d7b
...
@@ -6183,7 +6183,7 @@ base_type_die (type)
...
@@ -6183,7 +6183,7 @@ base_type_die (type)
base_type_result
=
new_die
(
DW_TAG_base_type
,
comp_unit_die
);
base_type_result
=
new_die
(
DW_TAG_base_type
,
comp_unit_die
);
add_AT_string
(
base_type_result
,
DW_AT_name
,
type_name
);
add_AT_string
(
base_type_result
,
DW_AT_name
,
type_name
);
add_AT_unsigned
(
base_type_result
,
DW_AT_byte_size
,
add_AT_unsigned
(
base_type_result
,
DW_AT_byte_size
,
TYPE_PRECISION
(
type
)
/
BITS_PER_UNIT
);
int_size_in_bytes
(
type
)
);
add_AT_unsigned
(
base_type_result
,
DW_AT_encoding
,
encoding
);
add_AT_unsigned
(
base_type_result
,
DW_AT_encoding
,
encoding
);
return
base_type_result
;
return
base_type_result
;
...
...
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