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
7ee20eba
Commit
7ee20eba
authored
Aug 13, 2001
by
Ulrich Weigand
Committed by
Ulrich Weigand
Aug 13, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed HOST_WIDE_INT type mismatch.
From-SVN: r44870
parent
02c9b1ca
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
7 deletions
+12
-7
gcc/ChangeLog
+5
-0
gcc/config/s390/s390.c
+7
-7
No files found.
gcc/ChangeLog
View file @
7ee20eba
2001
-
08
-
13
Ulrich
Weigand
<
uweigand
@de
.
ibm
.
com
>
*
config
/
s390
/
s390
.
c
(
print_operand
,
s390_function_prologue
,
s390_va_start
)
:
Fixed
HOST_WIDE_INT
type
mismatch
.
2001
-
08
-
13
Richard
Henderson
<
rth
@redhat
.
com
>
*
config
/
rs6000
/
xcoff
.
h
(
EH_FRAME_IN_DATA_SECTION
)
:
New
.
...
...
gcc/config/s390/s390.c
View file @
7ee20eba
...
...
@@ -1494,15 +1494,15 @@ print_operand (file, x, code)
case
CONST_INT
:
if
(
code
==
'b'
)
fprintf
(
file
,
"%d"
,
INTVAL
(
x
)
&
0xff
);
fprintf
(
file
,
"%d"
,
(
int
)(
INTVAL
(
x
)
&
0xff
)
);
else
if
(
code
==
'X'
)
fprintf
(
file
,
"%d"
,
INTVAL
(
x
)
&
0xff
);
fprintf
(
file
,
"%d"
,
(
int
)(
INTVAL
(
x
)
&
0xff
)
);
else
if
(
code
==
'x'
)
fprintf
(
file
,
"0x%x"
,
INTVAL
(
x
)
&
0xffff
);
fprintf
(
file
,
"0x%x"
,
(
int
)(
INTVAL
(
x
)
&
0xffff
)
);
else
if
(
code
==
'h'
)
fprintf
(
file
,
"%d"
,
(
INTVAL
(
x
)
<<
16
)
>>
16
);
fprintf
(
file
,
"%d"
,
(
int
)(
INTVAL
(
x
)
<<
16
)
>>
16
);
else
fprintf
(
file
,
"%d"
,
INTVAL
(
x
));
fprintf
(
file
,
"%d"
,
(
int
)
INTVAL
(
x
));
break
;
default
:
...
...
@@ -2404,7 +2404,7 @@ s390_function_prologue (file, lsize)
fprintf
(
file
,
"%s
\t
leaf function %d
\n
"
,
ASM_COMMENT_START
,
leaf_function_p
());
fprintf
(
file
,
"%s
\t
automatics %d
\n
"
,
ASM_COMMENT_START
,
lsize
);
(
int
)
lsize
);
fprintf
(
file
,
"%s
\t
outgoing args %d
\n
"
,
ASM_COMMENT_START
,
current_function_outgoing_args_size
);
fprintf
(
file
,
"%s
\t
need frame pointer %d
\n
"
,
ASM_COMMENT_START
,
...
...
@@ -2934,7 +2934,7 @@ s390_va_start (stdarg_p, valist, nextarg)
off
=
off
>
0
?
off
-
UNITS_PER_WORD
:
off
;
if
(
TARGET_DEBUG_ARG
)
fprintf
(
stderr
,
"va_start: n_gpr = %d, n_fpr = %d off %d
\n
"
,
n_gpr
,
n_fpr
,
off
);
(
int
)
n_gpr
,
(
int
)
n_fpr
,
off
);
t
=
build
(
PLUS_EXPR
,
TREE_TYPE
(
ovf
),
t
,
build_int_2
(
off
,
0
));
...
...
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