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
7e200b50
Commit
7e200b50
authored
Sep 27, 2004
by
Devang Patel
Committed by
Devang Patel
Sep 27, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-pretty-print.c (dump_generic_node): Print VEC_COND_EXPR.
From-SVN: r88187
parent
8c1e80e9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
gcc/ChangeLog
+4
-0
gcc/tree-pretty-print.c
+10
-0
No files found.
gcc/ChangeLog
View file @
7e200b50
2004
-
09
-
27
Devang
Patel
<
dpatel
@
apple
.
com
>
*
tree
-
pretty
-
print
.
c
(
dump_generic_node
):
Print
VEC_COND_EXPR
.
2004
-
09
-
27
Jan
Hubicka
<
jh
@
suse
.
cz
>
*
i386
.
c
(
athlon_cost
,
k8_cost
):
Set
BRANCH_COST
to
5.
...
...
gcc/tree-pretty-print.c
View file @
7e200b50
...
...
@@ -1971,6 +1971,16 @@ print_call_name (pretty_printer *buffer, tree node)
dump_generic_node
(
buffer
,
op0
,
0
,
0
,
false
);
break
;
case
VEC_COND_EXPR
:
pp_string
(
buffer
,
" VEC_COND_EXPR < "
);
dump_generic_node
(
buffer
,
TREE_OPERAND
(
node
,
0
),
spc
,
flags
,
false
);
pp_string
(
buffer
,
" , "
);
dump_generic_node
(
buffer
,
TREE_OPERAND
(
node
,
1
),
spc
,
flags
,
false
);
pp_string
(
buffer
,
" , "
);
dump_generic_node
(
buffer
,
TREE_OPERAND
(
node
,
2
),
spc
,
flags
,
false
);
pp_string
(
buffer
,
" > "
);
break
;
default:
NIY
;
}
...
...
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