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
e0263671
Commit
e0263671
authored
May 18, 1998
by
Craig Burley
Committed by
Dave Love
May 18, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(ffeintrin_init_0): Distinguish between
crashes on bad arg base and kind types. From-SVN: r19838
parent
5403eb3a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
17 deletions
+22
-17
gcc/f/intrin.c
+22
-17
No files found.
gcc/f/intrin.c
View file @
e0263671
...
...
@@ -1643,24 +1643,29 @@ ffeintrin_init_0 ()
||
(
c
[
1
]
==
'n'
)
||
(
c
[
1
]
==
'p'
))
++
c
;
if
(((
c
[
1
]
!=
'-'
)
&&
(
c
[
1
]
!=
'A'
)
&&
(
c
[
1
]
!=
'C'
)
&&
(
c
[
1
]
!=
'I'
)
&&
(
c
[
1
]
!=
'L'
)
&&
(
c
[
1
]
!=
'R'
)
&&
(
c
[
1
]
!=
'B'
)
&&
(
c
[
1
]
!=
'F'
)
&&
(
c
[
1
]
!=
'N'
)
&&
(
c
[
1
]
!=
'S'
)
&&
(
c
[
1
]
!=
'g'
)
&&
(
c
[
1
]
!=
's'
))
||
((
c
[
2
]
!=
'*'
)
&&
((
c
[
2
]
<
'1'
)
||
(
c
[
2
]
>
'9'
))
&&
(
c
[
2
]
!=
'A'
)))
if
((
c
[
1
]
!=
'-'
)
&&
(
c
[
1
]
!=
'A'
)
&&
(
c
[
1
]
!=
'C'
)
&&
(
c
[
1
]
!=
'I'
)
&&
(
c
[
1
]
!=
'L'
)
&&
(
c
[
1
]
!=
'R'
)
&&
(
c
[
1
]
!=
'B'
)
&&
(
c
[
1
]
!=
'F'
)
&&
(
c
[
1
]
!=
'N'
)
&&
(
c
[
1
]
!=
'S'
)
&&
(
c
[
1
]
!=
'g'
)
&&
(
c
[
1
]
!=
's'
))
{
fprintf
(
stderr
,
"%s: bad arg-type
\n
"
,
fprintf
(
stderr
,
"%s: bad arg-base-type
\n
"
,
ffeintrin_imps_
[
i
].
name
);
break
;
}
if
((
c
[
2
]
!=
'*'
)
&&
((
c
[
2
]
<
'1'
)
||
(
c
[
2
]
>
'9'
))
&&
(
c
[
2
]
!=
'A'
))
{
fprintf
(
stderr
,
"%s: bad arg-kind-type
\n
"
,
ffeintrin_imps_
[
i
].
name
);
break
;
}
...
...
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