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
96d9bb07
Commit
96d9bb07
authored
Nov 23, 2007
by
Aldy Hernandez
Committed by
Aldy Hernandez
Nov 23, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
+ * trans-expr.c (gfc_trans_string_copy): Use "void *" when building a
+ memset. From-SVN: r130371
parent
cb2d412c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/fortran/ChangeLog
+5
-0
gcc/fortran/trans-expr.c
+1
-1
No files found.
gcc/fortran/ChangeLog
View file @
96d9bb07
2007-11-23 Aldy Hernandez <aldyh@redhat.com>
* trans-expr.c (gfc_trans_string_copy): Use "void *" when building a
memset.
2007-11-22 Tobias Burnus <burnus@net-b.de>
2007-11-22 Tobias Burnus <burnus@net-b.de>
* primary.c (gfc_match_structure_constructor): Allow
* primary.c (gfc_match_structure_constructor): Allow
...
...
gcc/fortran/trans-expr.c
View file @
96d9bb07
...
@@ -2701,7 +2701,7 @@ gfc_trans_string_copy (stmtblock_t * block, tree dlength, tree dest,
...
@@ -2701,7 +2701,7 @@ gfc_trans_string_copy (stmtblock_t * block, tree dlength, tree dest,
tmp3
=
build_call_expr
(
built_in_decls
[
BUILT_IN_MEMMOVE
],
tmp3
=
build_call_expr
(
built_in_decls
[
BUILT_IN_MEMMOVE
],
3
,
dest
,
src
,
slen
);
3
,
dest
,
src
,
slen
);
tmp4
=
fold_build2
(
POINTER_PLUS_EXPR
,
pchar_type_node
,
dest
,
tmp4
=
fold_build2
(
POINTER_PLUS_EXPR
,
TREE_TYPE
(
dest
)
,
dest
,
fold_convert
(
sizetype
,
slen
));
fold_convert
(
sizetype
,
slen
));
tmp4
=
build_call_expr
(
built_in_decls
[
BUILT_IN_MEMSET
],
3
,
tmp4
=
build_call_expr
(
built_in_decls
[
BUILT_IN_MEMSET
],
3
,
tmp4
,
tmp4
,
...
...
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