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
bd7fc26f
Commit
bd7fc26f
authored
Feb 23, 2000
by
Nick Clifton
Committed by
Nick Clifton
Feb 23, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix arm_comp_type_attributes
From-SVN: r32118
parent
8bacb3d9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
6 deletions
+27
-6
gcc/ChangeLog
+5
-0
gcc/config/arm/arm.c
+22
-6
No files found.
gcc/ChangeLog
View file @
bd7fc26f
2000
-
02
-
23
Nick
Clifton
<
nickc
@cygnus
.
com
>
*
config
/
arm
/
arm
.
c
(
arm_comp_type_attributes
)
:
Simply
and
comment
tests
on
type
attributes
.
Wed
Feb
23
16
:
42
:
21
2000
J
"orn Rennecke <amylaar@cygnus.co.uk>
* final.c (shorten_branches): Make value passed to LABEL_ALIGN
...
...
gcc/config/arm/arm.c
View file @
bd7fc26f
...
...
@@ -1545,7 +1545,10 @@ current_file_function_operand (sym_ref)
/* XXX FIXME - we need some way to determine if SYMREF has already been
compiled. We wanted to used SYMBOL_REF_FLAG but this is already in use
by the constant pool generation code. */
return
sym_ref
==
XEXP
(
DECL_RTL
(
current_function_decl
),
0
);
return
GET_CODE
(
sym_ref
)
==
SYMBOL_REF
&&
sym_ref
==
XEXP
(
DECL_RTL
(
current_function_decl
),
0
)
&&
!
DECL_WEAK
(
current_function_decl
);
}
/* Return non-zero if a 32 bit "long call" should be generated for this
...
...
@@ -1639,17 +1642,30 @@ arm_comp_type_attributes (type1, type2)
tree
type2
;
{
int
l1
,
l2
,
s1
,
s2
;
/* Check for mismatch of non-default calling convention. */
if
(
TREE_CODE
(
type1
)
!=
FUNCTION_TYPE
)
return
1
;
/* Check for mismatched call attributes. */
l1
=
!
lookup_attribute
(
"long_call"
,
TYPE_ATTRIBUTES
(
type1
));
l2
=
!
lookup_attribute
(
"long_call"
,
TYPE_ATTRIBUTES
(
type2
));
s1
=
!
lookup_attribute
(
"short_call"
,
TYPE_ATTRIBUTES
(
type1
));
s2
=
!
lookup_attribute
(
"short_call"
,
TYPE_ATTRIBUTES
(
type2
));
l1
=
lookup_attribute
(
"long_call"
,
TYPE_ATTRIBUTES
(
type1
));
l2
=
lookup_attribute
(
"long_call"
,
TYPE_ATTRIBUTES
(
type2
));
s1
=
lookup_attribute
(
"short_call"
,
TYPE_ATTRIBUTES
(
type1
));
s2
=
lookup_attribute
(
"short_call"
,
TYPE_ATTRIBUTES
(
type2
));
/* Only bother to check if an attribute is defined. */
if
(
l1
|
l2
|
s1
|
s2
)
{
/* If one type has an attribute, the other must have the same attribute. */
if
((
!
l1
!=
!
l2
)
||
(
!
s1
!=
!
s2
))
return
0
;
return
!
((
l1
^
l2
)
||
(
s1
^
s2
)
||
(
l1
|
s2
)
||
(
s1
|
l2
));
/* Disallow mixed attributes. */
if
((
l1
&
s2
)
||
(
l2
&
s1
))
return
0
;
}
return
1
;
}
...
...
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