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
b7b28c53
Commit
b7b28c53
authored
Sep 19, 2013
by
Jan Hubicka
Committed by
Jan Hubicka
Sep 19, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* i386.c (generic_memcpy, generic_memset): Fix 32bit template.
From-SVN: r202747
parent
83ae86f5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
gcc/ChangeLog
+4
-0
gcc/config/i386/i386.c
+4
-2
No files found.
gcc/ChangeLog
View file @
b7b28c53
2013-09-19 Jan Hubicka <jh@suse.cz>
* i386.c (generic_memcpy, generic_memset): Fix 32bit template.
2013-09-17 Jeff Law <law@redhat.com>
2013-09-17 Jeff Law <law@redhat.com>
* tree-ssa-dom.c (record_temporary_equivalences): New function
* tree-ssa-dom.c (record_temporary_equivalences): New function
...
...
gcc/config/i386/i386.c
View file @
b7b28c53
...
@@ -1648,11 +1648,13 @@ struct processor_costs slm_cost = {
...
@@ -1648,11 +1648,13 @@ struct processor_costs slm_cost = {
and btver1 (and newer chips). */
and btver1 (and newer chips). */
static
stringop_algs
generic_memcpy
[
2
]
=
{
static
stringop_algs
generic_memcpy
[
2
]
=
{
DUMMY_STRINGOP_ALGS
,
{
libcall
,
{{
32
,
loop
,
false
},
{
8192
,
rep_prefix_4_byte
,
false
},
{
-
1
,
libcall
,
false
}}},
{
libcall
,
{{
32
,
loop
,
false
},
{
8192
,
rep_prefix_8_byte
,
false
},
{
libcall
,
{{
32
,
loop
,
false
},
{
8192
,
rep_prefix_8_byte
,
false
},
{
-
1
,
libcall
,
false
}}}};
{
-
1
,
libcall
,
false
}}}};
static
stringop_algs
generic_memset
[
2
]
=
{
static
stringop_algs
generic_memset
[
2
]
=
{
DUMMY_STRINGOP_ALGS
,
{
libcall
,
{{
32
,
loop
,
false
},
{
8192
,
rep_prefix_4_byte
,
false
},
{
-
1
,
libcall
,
false
}}},
{
libcall
,
{{
32
,
loop
,
false
},
{
8192
,
rep_prefix_8_byte
,
false
},
{
libcall
,
{{
32
,
loop
,
false
},
{
8192
,
rep_prefix_8_byte
,
false
},
{
-
1
,
libcall
,
false
}}}};
{
-
1
,
libcall
,
false
}}}};
static
const
static
const
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