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
8433ffc5
Commit
8433ffc5
authored
Mar 07, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r411
parent
05795922
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
3 deletions
+13
-3
gcc/config/vax/vax.h
+2
-2
gcc/genextract.c
+11
-1
No files found.
gcc/config/vax/vax.h
View file @
8433ffc5
...
...
@@ -130,9 +130,9 @@ extern int target_flags;
/* No structure field wants to be aligned rounder than this. */
#define BIGGEST_FIELD_ALIGNMENT (TARGET_VAXC_ALIGNMENT ? 8 : 32)
/*
Define this
if move instructions will actually fail to work
/*
Set this nonzero
if move instructions will actually fail to work
when given unaligned data. */
/* #define STRICT_ALIGNMENT */
#define STRICT_ALIGNMENT 0
/* Standard register usage. */
...
...
gcc/genextract.c
View file @
8433ffc5
...
...
@@ -71,6 +71,7 @@ static void print_path ();
char
*
xmalloc
();
char
*
xrealloc
();
static
void
fatal
();
static
void
mybzero
();
void
fancy_abort
();
static
void
...
...
@@ -82,7 +83,7 @@ gen_insn (insn)
dup_count
=
0
;
/* No operands seen so far in this pattern. */
bzero
(
operand_seen
,
operand_seen_length
);
my
bzero
(
operand_seen
,
operand_seen_length
);
printf
(
" case %d:
\n
"
,
insn_code_number
);
...
...
@@ -294,6 +295,15 @@ fancy_abort ()
{
fatal
(
"Internal gcc abort."
);
}
static
void
mybzero
(
b
,
length
)
register
char
*
b
;
register
unsigned
length
;
{
while
(
length
--
>
0
)
*
b
++
=
0
;
}
int
main
(
argc
,
argv
)
...
...
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