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
011fd56b
Commit
011fd56b
authored
Apr 23, 2003
by
Ulrich Weigand
Committed by
Ulrich Weigand
Apr 23, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/s390/s390.c (s390_expand_cmpstr): Disable CLC loop.
From-SVN: r66002
parent
7052a099
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
1 deletions
+9
-1
gcc/ChangeLog
+4
-0
gcc/config/s390/s390.c
+5
-1
No files found.
gcc/ChangeLog
View file @
011fd56b
2003-04-23 Ulrich Weigand <uweigand@de.ibm.com>
* config/s390/s390.c (s390_expand_cmpstr): Disable CLC loop.
2003-04-23 Richard Earnshaw <rearnsha@arm.com>
* arm.h (TARGET_OPTIONS): Add value field.
...
...
gcc/config/s390/s390.c
View file @
011fd56b
...
...
@@ -2963,7 +2963,7 @@ s390_expand_cmpstr (target, op0, op1, len)
emit_move_insn
(
target
,
const0_rtx
);
}
else
if
(
TARGET_MVCLE
)
else
/* if (TARGET_MVCLE) */
{
enum
machine_mode
double_mode
=
TARGET_64BIT
?
TImode
:
DImode
;
enum
machine_mode
single_mode
=
TARGET_64BIT
?
DImode
:
SImode
;
...
...
@@ -2982,6 +2982,9 @@ s390_expand_cmpstr (target, op0, op1, len)
emit_insn
((
*
gen_result
)
(
target
));
}
#if 0
/* Deactivate for now as profile code cannot cope with
CC being live across basic block boundaries. */
else
{
rtx addr0, addr1, count, blocks, temp;
...
...
@@ -3047,6 +3050,7 @@ s390_expand_cmpstr (target, op0, op1, len)
emit_insn ((*gen_result) (target));
}
#endif
}
/* This is called from dwarf2out.c via ASM_OUTPUT_DWARF_DTPREL.
...
...
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