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
463a8384
Commit
463a8384
authored
Jul 19, 1999
by
Bernd Schmidt
Committed by
Bernd Schmidt
Jul 19, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix INTEL_SYNTAX output for i386 backend
From-SVN: r28170
parent
7211928a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
gcc/ChangeLog
+7
-0
gcc/final.c
+3
-2
No files found.
gcc/ChangeLog
View file @
463a8384
Mon
Jul
19
09
:
36
:
27
1999
Bernd
Schmidt
<
bernds
@cygnus
.
co
.
uk
>
*
final
.
c
(
output_asm_insn
)
:
When
searching
for
the
matching
string
for
a
given
dialect
,
don
'
t
run
past
the
end
of
the
list
of
alternatives
if
there
are
fewer
alternatives
in
the
template
than
dialects
.
1999
-
07
-
17
Alexandre
Oliva
<
oliva
@dcc
.
unicamp
.
br
>
*
gcc
.
texi
:
Update
e
-
mail
addresses
and
URLs
to
gcc
.
gnu
.
org
.
...
...
gcc/final.c
View file @
463a8384
...
...
@@ -3399,9 +3399,10 @@ output_asm_insn (template, operands)
DIALECT_NUMBER of strings ending with '|'. */
for
(
i
=
0
;
i
<
dialect_number
;
i
++
)
{
while
(
*
p
&&
*
p
++
!=
'|'
)
while
(
*
p
&&
*
p
!=
'}'
&&
*
p
++
!=
'|'
)
;
if
(
*
p
==
'}'
)
break
;
if
(
*
p
==
'|'
)
p
++
;
}
...
...
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