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
ab577d8a
Commit
ab577d8a
authored
May 31, 2000
by
Michael Meissner
Committed by
Michael Meissner
May 31, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow HIGH/LO_SUM in the prologue
From-SVN: r34281
parent
d3bc8938
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
0 deletions
+16
-0
gcc/ChangeLog
+6
-0
gcc/dwarf2out.c
+10
-0
No files found.
gcc/ChangeLog
View file @
ab577d8a
2000-05-30 Michael Meissner <meissner@redhat.com>
* dwarf2out.c (dwarf2out_frame_debug_expr): Ignore HIGH
instructions. Treat LO_SUM operations as loading the full integer
constant.
2000-05-30 Richard Henderson <rth@cygnus.com>
* combine.c (get_pos_from_mask): Test exact_log2 result as signed.
...
...
gcc/dwarf2out.c
View file @
ab577d8a
...
...
@@ -1289,6 +1289,16 @@ dwarf2out_frame_debug_expr (expr, label)
dwarf2out_def_cfa
(
label
,
cfa_reg
,
cfa_offset
);
break
;
/* Skip over HIGH, assuming it will be followed by a LO_SUM, which
will fill in all of the bits. */
case
HIGH
:
break
;
case
LO_SUM
:
cfa_temp_reg
=
REGNO
(
dest
);
cfa_temp_value
=
INTVAL
(
XEXP
(
src
,
1
));
break
;
case
MEM
:
/* Saving a register to the stack. Make sure dest is relative to the
CFA register. */
...
...
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