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
1f0282cb
Commit
1f0282cb
authored
Feb 17, 2004
by
Gunther Nikl
Committed by
Bernardo Innocenti
Feb 17, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/m68k/m68k.c: Remove obsolete support for HPUX_ASM.
From-SVN: r77977
parent
6552458a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
36 deletions
+6
-36
gcc/ChangeLog
+4
-0
gcc/config/m68k/m68k.c
+2
-36
No files found.
gcc/ChangeLog
View file @
1f0282cb
2004-02-16 Gunther Nikl <gni@gecko.de>
* config/m68k/m68k.c: Remove obsolete support for HPUX_ASM.
2004-02-17 Kazu Hirata <kazu@cs.umass.edu>
* config/h8300/h8300.c (h8300_expand_prologue): Don't generate
...
...
gcc/config/m68k/m68k.c
View file @
1f0282cb
...
...
@@ -98,10 +98,6 @@ static void m68k_output_function_epilogue (FILE *, HOST_WIDE_INT);
#ifdef M68K_TARGET_COFF
static
void
m68k_coff_asm_named_section
(
const
char
*
,
unsigned
int
);
#endif
/* M68K_TARGET_COFF */
#ifdef HPUX_ASM
static
void
m68k_hp320_internal_label
(
FILE
*
,
const
char
*
,
unsigned
long
);
static
void
m68k_hp320_file_start
(
void
);
#endif
static
void
m68k_output_mi_thunk
(
FILE
*
,
tree
,
HOST_WIDE_INT
,
HOST_WIDE_INT
,
tree
);
static
rtx
m68k_struct_value_rtx
(
tree
,
int
);
...
...
@@ -171,10 +167,6 @@ int m68k_last_compare_had_fp_operands;
#define TARGET_ASM_FUNCTION_PROLOGUE m68k_output_function_prologue
#undef TARGET_ASM_FUNCTION_EPILOGUE
#define TARGET_ASM_FUNCTION_EPILOGUE m68k_output_function_epilogue
#ifdef HPUX_ASM
#undef TARGET_ASM_INTERNAL_LABEL
#define TARGET_ASM_INTERNAL_LABEL m68k_hp320_internal_label
#endif
#undef TARGET_ASM_OUTPUT_MI_THUNK
#define TARGET_ASM_OUTPUT_MI_THUNK m68k_output_mi_thunk
...
...
@@ -1017,9 +1009,7 @@ m68k_output_pic_call(rtx dest)
else
if
(
TARGET_PCREL
)
out
=
"bsr.l %o0"
;
else
if
((
flag_pic
==
1
)
||
TARGET_68020
)
#ifdef HPUX_ASM
out
=
"bsr.l %0"
;
#elif defined(USE_GAS)
#if defined(USE_GAS)
out
=
"bsr.l %0@PLTPC"
;
#else
out
=
"bsr %0@PLTPC"
;
...
...
@@ -3350,28 +3340,6 @@ m68k_coff_asm_named_section (const char *name, unsigned int flags)
#endif
/* M68K_TARGET_COFF */
#ifdef HPUX_ASM
static
void
m68k_hp320_internal_label
(
FILE
*
stream
,
const
char
*
prefix
,
unsigned
long
labelno
)
{
if
(
prefix
[
0
]
==
'L'
&&
prefix
[
1
]
==
'I'
)
fprintf
(
stream
,
"
\t
set %s%ld,.+2
\n
"
,
prefix
,
labelno
);
else
fprintf
(
stream
,
"%s%ld:
\n
"
,
prefix
,
labelno
);
}
static
void
m68k_hp320_file_start
(
void
)
{
/* version 1: 68010.
2: 68020 without FPU.
3: 68020 with FPU. */
fprintf
(
asm_out_file
,
"
\t
version %d
\n
"
,
TARGET_68020
?
(
TARGET_68881
?
3
:
2
)
:
1
);
}
#endif
static
void
m68k_output_mi_thunk
(
FILE
*
file
,
tree
thunk
ATTRIBUTE_UNUSED
,
HOST_WIDE_INT
delta
,
...
...
@@ -3407,9 +3375,7 @@ m68k_output_mi_thunk (FILE *file, tree thunk ATTRIBUTE_UNUSED,
else
if
((
flag_pic
==
1
)
||
TARGET_68020
)
{
if
(
MOTOROLA
)
#ifdef HPUX_ASM
fmt
=
"bra.l %0"
;
#elif defined(USE_GAS)
#if defined(USE_GAS)
fmt
=
"bra.l %0@PLTPC"
;
#else
fmt
=
"bra %0@PLTPC"
;
...
...
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