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
8127356e
Commit
8127356e
authored
Dec 28, 2004
by
Andreas Jaeger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* genrecog.c (compute_predicate_codes): Avoid warning.
From-SVN: r92668
parent
76335fef
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
5 deletions
+10
-5
gcc/ChangeLog
+8
-4
gcc/genrecog.c
+2
-1
No files found.
gcc/ChangeLog
View file @
8127356e
2004
-
12
-
28
Andreas
Jaeger
<
aj
@
suse
.
de
>
*
genrecog
.
c
(
compute_predicate_codes
):
Avoid
warning
.
2004
-
12
-
27
John
David
Anglin
<
dave
.
anglin
@
nrc
-
cnrc
.
gc
.
ca
>
*
vax
.
c
(
vax_address_cost
,
vax_rtx_cost
):
Correct
casts
.
...
...
@@ -62,7 +66,7 @@
* simplify-rtx.c (simplify_relational_operation_1): Don'
t
simplify
plus
/
minus
across
EQ
for
floating
-
point
.
2004
-
12
-
26
John
David
Anglin
<
dave
.
anglin
@
nrc
-
cnrc
.
gc
.
ca
>
PR
target
/
17643
...
...
@@ -109,7 +113,7 @@
(
fix_trunc
{
d
,
s
}
fdi2
):
Reorder
tests
.
2004
-
12
-
24
Daniel
Berlin
<
dberlin
@
dberlin
.
org
>
Fix
PR
debug
/
14638
*
tree
.
h
(
DECL_DEBUG_ALIAS_OF
):
New
macro
.
...
...
@@ -117,7 +121,7 @@
that are aliases of variables we want to track, unless the
original variable is also ignored for debugging purposes.
(VARIABLE_HASH_VAL): Use DECL_UID, so that this is deterministic.
* tree-outof-ssa.c (create_temp): Note who we are a debug alias of.
* tree-outof-ssa.c (create_temp): Note who we are a debug alias of.
* dwarf2out.c (dwarf2out_var_location): Add us to the location of
the decl we are an alias of.
...
...
@@ -1690,7 +1694,7 @@
Change eflags_p parameter in call to output_fp_compare.
(*cmpfp_2_sf, *cmpfp_2_df, *cmpfp_2_xf): Remove.
(*cmpfp_2_sf_1, *cmpfp_2_df_1, *cmpfp_2_xf_1): Rename to
*cmpfp_2_sf, *cmpfp_2_df, *cmpfp_2_xf.
Change eflags_p
*cmpfp_2_sf, *cmpfp_2_df, *cmpfp_2_xf. Change eflags_p
parameter in call to output_fp_compare.
(*cmpfp_2_u): Remove.
(*cmpfp_2_u_1): Rename to *cmpfp_2_u. Change eflags_p parameter
...
...
gcc/genrecog.c
View file @
8127356e
...
...
@@ -300,7 +300,8 @@ compute_predicate_codes (rtx exp, char codes[NUM_RTX_CODE])
}
if
(
!
found_it
)
{
message_with_line
(
pattern_lineno
,
"match_code
\"
%.*s
\"
matches nothing"
,
n
,
code
);
message_with_line
(
pattern_lineno
,
"match_code
\"
%.*s
\"
matches nothing"
,
(
int
)
n
,
code
);
error_count
++
;
for
(
i
=
0
;
i
<
NUM_RTX_CODE
;
i
++
)
if
(
!
strncasecmp
(
code
,
GET_RTX_NAME
(
i
),
n
)
...
...
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