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
e6677db3
Commit
e6677db3
authored
Mar 30, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(movstr_optab): No longer static.
(init_expr_once): Don't initialize movstr_optab. From-SVN: r3923
parent
af9e4a0c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
24 deletions
+1
-24
gcc/expr.c
+1
-24
No files found.
gcc/expr.c
View file @
e6677db3
...
...
@@ -167,7 +167,7 @@ static char direct_store[NUM_MACHINE_MODES];
#endif
/* This array records the insn_code of insns to perform block moves. */
static
enum
insn_code
movstr_optab
[
NUM_MACHINE_MODES
];
enum
insn_code
movstr_optab
[
NUM_MACHINE_MODES
];
/* SLOW_UNALIGNED_ACCESS is non-zero if unaligned accesses are very slow. */
...
...
@@ -245,32 +245,9 @@ init_expr_once ()
if
(
recog
(
pat
,
insn
,
&
num_clobbers
)
>=
0
)
direct_store
[(
int
)
mode
]
=
1
;
}
movstr_optab
[(
int
)
mode
]
=
CODE_FOR_nothing
;
}
end_sequence
();
#ifdef HAVE_movstrqi
if
(
HAVE_movstrqi
)
movstr_optab
[(
int
)
QImode
]
=
CODE_FOR_movstrqi
;
#endif
#ifdef HAVE_movstrhi
if
(
HAVE_movstrhi
)
movstr_optab
[(
int
)
HImode
]
=
CODE_FOR_movstrhi
;
#endif
#ifdef HAVE_movstrsi
if
(
HAVE_movstrsi
)
movstr_optab
[(
int
)
SImode
]
=
CODE_FOR_movstrsi
;
#endif
#ifdef HAVE_movstrdi
if
(
HAVE_movstrdi
)
movstr_optab
[(
int
)
DImode
]
=
CODE_FOR_movstrdi
;
#endif
#ifdef HAVE_movstrti
if
(
HAVE_movstrti
)
movstr_optab
[(
int
)
TImode
]
=
CODE_FOR_movstrti
;
#endif
}
/* This is run at the start of compiling a function. */
...
...
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