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
65a372f4
Commit
65a372f4
authored
Aug 09, 2013
by
Arnaud Charlet
Committed by
Eric Botcazou
Aug 09, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* c-ada-spec.c (print_ada_declaration): Prevent accessing null asm name
From-SVN: r201625
parent
66adb8eb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/c-family/ChangeLog
+4
-0
gcc/c-family/c-ada-spec.c
+1
-1
No files found.
gcc/c-family/ChangeLog
View file @
65a372f4
2013
-
08
-
09
Arnaud
Charlet
<
charlet
@adacore
.
com
>
*
c
-
ada
-
spec
.
c
(
print_ada_declaration
)
:
Prevent
accessing
null
asm
name
2013
-
08
-
05
Paolo
Carlini
<
paolo
.
carlini
@oracle
.
com
>
PR
c
++/
58080
...
...
gcc/c-family/c-ada-spec.c
View file @
65a372f4
...
...
@@ -2900,7 +2900,7 @@ print_ada_declaration (pretty_printer *buffer, tree t, tree type,
pp_string
(
buffer
,
" -- "
);
dump_sloc
(
buffer
,
t
);
if
(
is_abstract
)
if
(
is_abstract
||
!
DECL_ASSEMBLER_NAME
(
t
)
)
return
1
;
newline_and_indent
(
buffer
,
spc
);
...
...
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