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
2eb20e13
Commit
2eb20e13
authored
Sep 29, 2008
by
Eric Botcazou
Committed by
Eric Botcazou
Sep 29, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dwarf2out.c (constant_size): Use HOST_WIDE_INT in parameter type.
From-SVN: r140769
parent
2dda7d28
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/dwarf2out.c
+2
-2
No files found.
gcc/ChangeLog
View file @
2eb20e13
2008
-
09
-
29
Eric
Botcazou
<
ebotcazou
@adacore
.
com
>
*
dwarf2out
.
c
(
constant_size
)
:
Use
HOST_WIDE_INT
in
parameter
type
.
2008
-
09
-
29
Joseph
Myers
<
joseph
@codesourcery
.
com
>
*
ifcvt
.
c
(
noce_emit_store_flag
)
:
If
using
condition
from
original
...
...
gcc/dwarf2out.c
View file @
2eb20e13
...
...
@@ -4990,7 +4990,7 @@ static void record_comdat_symbol_number (dw_die_ref, htab_t, unsigned);
static
void
add_sibling_attributes
(
dw_die_ref
);
static
void
build_abbrev_table
(
dw_die_ref
);
static
void
output_location_lists
(
dw_die_ref
);
static
int
constant_size
(
long
unsigned
);
static
int
constant_size
(
unsigned
HOST_WIDE_INT
);
static
unsigned
long
size_of_die
(
dw_die_ref
);
static
void
calc_die_sizes
(
dw_die_ref
);
static
void
mark_dies
(
dw_die_ref
);
...
...
@@ -7507,7 +7507,7 @@ build_abbrev_table (dw_die_ref die)
/* Return the power-of-two number of bytes necessary to represent VALUE. */
static
int
constant_size
(
long
unsigned
int
value
)
constant_size
(
unsigned
HOST_WIDE_INT
value
)
{
int
log
;
...
...
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