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
198104af
Commit
198104af
authored
Jul 25, 2017
by
Georg-Johann Lay
Committed by
Georg-Johann Lay
Jul 25, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/avr/avr-log.c (avr_log_vadump) ['T']: Print NULL-TREE.
From-SVN: r250495
parent
3d99332b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletions
+11
-1
gcc/ChangeLog
+4
-0
gcc/config/avr/avr-log.c
+7
-1
No files found.
gcc/ChangeLog
View file @
198104af
2017
-
07
-
25
Georg
-
Johann
Lay
<
avr
@
gjlay
.
de
>
*
config
/
avr
/
avr
-
log
.
c
(
avr_log_vadump
)
[
'T'
]:
Print
NULL
-
TREE
.
2017
-
07
-
25
Richard
Biener
<
rguenther
@
suse
.
de
>
2017
-
07
-
25
Richard
Biener
<
rguenther
@
suse
.
de
>
PR
middle
-
end
/
81505
PR
middle
-
end
/
81505
...
...
gcc/config/avr/avr-log.c
View file @
198104af
...
@@ -146,7 +146,13 @@ avr_log_vadump (FILE *file, const char *caller, va_list ap)
...
@@ -146,7 +146,13 @@ avr_log_vadump (FILE *file, const char *caller, va_list ap)
}
}
case
'T'
:
case
'T'
:
print_node_brief
(
file
,
""
,
va_arg
(
ap
,
tree
),
3
);
{
tree
t
=
va_arg
(
ap
,
tree
);
if
(
NULL_TREE
==
t
)
fprintf
(
file
,
"<NULL-TREE>"
);
else
print_node_brief
(
file
,
""
,
t
,
3
);
}
break
;
break
;
case
'd'
:
case
'd'
:
...
...
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