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
501f88de
Commit
501f88de
authored
Jan 26, 2004
by
Jan Hubicka
Committed by
Jan Hubicka
Jan 26, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* genextract.c (main): Do not output the memset when not checking.
From-SVN: r76665
parent
0e50667c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
gcc/ChangeLog
+4
-0
gcc/genextract.c
+4
-2
No files found.
gcc/ChangeLog
View file @
501f88de
2004-01-25 Jan Hubicka <jh@suse.cz>
* genextract.c (main): Do not output the memset when not checking.
2004-01-26 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.c (h8300_tiny_constant_address_p): Use a
...
...
gcc/genextract.c
View file @
501f88de
...
...
@@ -387,8 +387,10 @@ from the machine description file `md'. */\n\n");
printf
(
" rtx **ro_loc = recog_data.operand_loc;
\n
"
);
printf
(
" rtx pat = PATTERN (insn);
\n
"
);
printf
(
" int i ATTRIBUTE_UNUSED;
\n\n
"
);
printf
(
" memset (ro, 0, sizeof (*ro) * MAX_RECOG_OPERANDS);
\n
"
);
printf
(
" memset (ro_loc, 0, sizeof (*ro_loc) * MAX_RECOG_OPERANDS);
\n
"
);
#ifdef ENABLE_CHECKING
printf
(
" memset (ro, 0xab, sizeof (*ro) * MAX_RECOG_OPERANDS);
\n
"
);
printf
(
" memset (ro_loc, 0xab, sizeof (*ro_loc) * MAX_RECOG_OPERANDS);
\n
"
);
#endif
printf
(
" switch (INSN_CODE (insn))
\n
"
);
printf
(
" {
\n
"
);
printf
(
" case -1:
\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