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
fd5580cb
Commit
fd5580cb
authored
Mar 16, 2004
by
J. Brobecker
Committed by
Joel Brobecker
Mar 16, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* dwarf2out.c (loc_descriptor_from_tree): Add handling for MIN_EXPR.
From-SVN: r79549
parent
78fab00f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
4 deletions
+14
-4
gcc/ChangeLog
+4
-0
gcc/dwarf2out.c
+10
-4
No files found.
gcc/ChangeLog
View file @
fd5580cb
2004-03-16 J. Brobecker <brobecker@gnat.com>
* dwarf2out.c (loc_descriptor_from_tree): Add handling for MIN_EXPR.
2004-03-16 Nathanael Nerode <neroden@gcc.gnu.org>
PR bootstrap/12974
...
...
gcc/dwarf2out.c
View file @
fd5580cb
...
...
@@ -9011,11 +9011,17 @@ loc_descriptor_from_tree (tree loc, int addressp)
add_loc_descr
(
&
ret
,
new_loc_descr
(
op
,
0
,
0
));
break
;
case
MIN_EXPR
:
case
MAX_EXPR
:
loc
=
build
(
COND_EXPR
,
TREE_TYPE
(
loc
),
build
(
LT_EXPR
,
integer_type_node
,
TREE_OPERAND
(
loc
,
0
),
TREE_OPERAND
(
loc
,
1
)),
TREE_OPERAND
(
loc
,
1
),
TREE_OPERAND
(
loc
,
0
));
{
const
enum
tree_code
code
=
TREE_CODE
(
loc
)
==
MIN_EXPR
?
GT_EXPR
:
LT_EXPR
;
loc
=
build
(
COND_EXPR
,
TREE_TYPE
(
loc
),
build
(
code
,
integer_type_node
,
TREE_OPERAND
(
loc
,
0
),
TREE_OPERAND
(
loc
,
1
)),
TREE_OPERAND
(
loc
,
1
),
TREE_OPERAND
(
loc
,
0
));
}
/* ... fall through ... */
...
...
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