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
7c6d68c8
Commit
7c6d68c8
authored
May 04, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r891
parent
6336436e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
15 deletions
+18
-15
gcc/config.sub
+5
-2
gcc/varasm.c
+13
-13
No files found.
gcc/config.sub
View file @
7c6d68c8
...
...
@@ -78,7 +78,7 @@ case $basic_machine in
# Recognize the basic CPU types with without company name.
# Some are omitted here because they have special meanings below.
tahoe
|
i[34]86
|
i860
|
m68k
|
m68000
|
m88k
|
ns32k
|
arm
|
pyramid
\
|
tron
|
a29k
|
580
|
i960
|
h8300
|
hppa1.0
|
hppa1.1
)
|
tron
|
a29k
|
580
|
i960
|
h8300
|
hppa1.0
|
hppa1.1
|
we32
)
basic_machine
=
$basic_machine
-unknown
;;
# Recognize the basic CPU types with with company name.
...
...
@@ -86,7 +86,7 @@ case $basic_machine in
|
sparc-
*
|
ns32k-
*
|
fx80-
*
|
arm-
*
|
c[123]
*
\
|
mips-
*
|
pyramid-
*
|
tron-
*
|
a29k-
*
|
romp-
*
|
rs6000-
*
\
|
none-
*
|
580-
*
|
cray2-
*
|
h8300-
*
|
i960-
*
|
xmp-
*
|
ymp-
*
\
|
hppa1.0-
*
|
hppa1.1-
*
)
|
hppa1.0-
*
|
hppa1.1-
*
|
we32-
*
)
;;
# Recognize the various machine names and aliases which stand
# for a CPU type and a company and sometimes even an OS.
...
...
@@ -176,6 +176,9 @@ case $basic_machine in
3b1
|
7300
|
7300-att
|
att-7300
|
pc7300
|
safari
|
unixpc
)
basic_machine
=
m68000-att
;;
3b
*
)
basic_machine
=
we32-att
;;
delta
|
3300
|
motorola-3300
|
motorola-delta
\
|
3300-motorola
|
delta-motorola
)
basic_machine
=
m68k-motorola
...
...
gcc/varasm.c
View file @
7c6d68c8
...
...
@@ -109,19 +109,6 @@ text_section ()
}
}
/* Tell assembler to switch to read-only data section. This is normally
the text section. */
void
readonly_data_section
()
{
#ifdef READONLY_DATA_SECTION
READONLY_DATA_SECTION
();
#else
text_section
();
#endif
}
/* Tell assembler to switch to data section. */
void
...
...
@@ -144,6 +131,19 @@ data_section ()
}
}
/* Tell assembler to switch to read-only data section. This is normally
the text section. */
void
readonly_data_section
()
{
#ifdef READONLY_DATA_SECTION
READONLY_DATA_SECTION
();
/* Note this can call data_section. */
#else
text_section
();
#endif
}
/* Determine if we're in the text section. */
int
...
...
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