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
1853aadd
Commit
1853aadd
authored
Jun 06, 1996
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Whitespace, formatting, and spelling fixes in comments.
From-SVN: r12187
parent
69685820
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
14 deletions
+14
-14
gcc/config/i386/i386.c
+14
-14
No files found.
gcc/config/i386/i386.c
View file @
1853aadd
...
...
@@ -2797,14 +2797,14 @@ print_operand (file, x, code)
}
abort
();
/* This is used by the conditional move instructions. */
case
'C'
:
put_condition_code
(
GET_CODE
(
x
),
file
);
return
;
/* like above
but reverse condition */
case
'N'
:
put_condition_code
(
reverse_condition
(
GET_CODE
(
x
)),
file
);
return
;
/* This is used by the conditional move instructions. */
case
'C'
:
put_condition_code
(
GET_CODE
(
x
),
file
);
return
;
/* like above,
but reverse condition */
case
'N'
:
put_condition_code
(
reverse_condition
(
GET_CODE
(
x
)),
file
);
return
;
default
:
{
...
...
@@ -4542,7 +4542,7 @@ output_strlen_unroll (operands)
/* Generate loop to check 4 bytes at a time */
/* IMHO it is not a good idea to align this loop. It gives only */
/* huge program
m
s, but does not help to speed up */
/* huge programs, but does not help to speed up */
/* ASM_OUTPUT_LOOP_ALIGN (asm_out_file); */
ASM_OUTPUT_INTERNAL_LABEL
(
asm_out_file
,
"L"
,
CODE_LABEL_NUMBER
(
xops
[
8
]));
...
...
@@ -4551,11 +4551,11 @@ output_strlen_unroll (operands)
if
(
QI_REG_P
(
xops
[
1
]))
{
/* on i586 it is faster to compare the hi- and lo- part */
/* as a kind of lookahead. If xoring both is zero, then one */
/* of both *could* be zero, otherwith none of both is zero */
/* this saves one instruction, on i486 this is slower */
/* testet with P-90, i486DX2-66, AMD486DX2-66
*/
/* On i586 it is faster to combine the hi- and lo- part as
a kind of lookahead. If anding both yields zero, then one
of both *could* be zero, otherwise none of both is zero;
this saves one instruction, on i486 this is slower
tested with P-90, i486DX2-66, AMD486DX2-66
*/
if
(
TARGET_PENTIUM
)
{
output_asm_insn
(
AS2
(
test
%
B1
,
%
h1
,
%
b1
),
xops
);
...
...
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