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
6f3113ed
Commit
6f3113ed
authored
Jul 14, 2005
by
Steve Ellcey
Committed by
Steve Ellcey
Jul 14, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/ia64/ia64.c (ia64_output_dwarf_dtprel): Support ILP32 mode.
From-SVN: r102031
parent
3fefd019
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
gcc/ChangeLog
+4
-0
gcc/config/ia64/ia64.c
+5
-2
No files found.
gcc/ChangeLog
View file @
6f3113ed
2005-07-14 Steve Ellcey <sje@cup.hp.com>
* config/ia64/ia64.c (ia64_output_dwarf_dtprel): Support ILP32 mode.
2005-07-14 Richard Guenther <rguenther@suse.de>
PR middle-end/22347
...
...
gcc/config/ia64/ia64.c
View file @
6f3113ed
...
...
@@ -4267,8 +4267,11 @@ ia64_function_value (tree valtype, tree func ATTRIBUTE_UNUSED)
static
void
ia64_output_dwarf_dtprel
(
FILE
*
file
,
int
size
,
rtx
x
)
{
gcc_assert
(
size
==
8
);
fputs
(
"
\t
data8.ua
\t
@dtprel("
,
file
);
gcc_assert
(
size
==
4
||
size
==
8
);
if
(
size
==
4
)
fputs
(
"
\t
data4.ua
\t
@dtprel("
,
file
);
else
fputs
(
"
\t
data8.ua
\t
@dtprel("
,
file
);
output_addr_const
(
file
,
x
);
fputs
(
")"
,
file
);
}
...
...
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