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
d1aed877
Commit
d1aed877
authored
Nov 28, 2002
by
Kaveh R. Ghazi
Committed by
Kaveh Ghazi
Nov 28, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* decl.c (java_init_decl_processing): Use `LL' on 64-bit constant.
From-SVN: r59594
parent
fe3f9515
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletions
+5
-1
gcc/java/ChangeLog
+4
-0
gcc/java/decl.c
+1
-1
No files found.
gcc/java/ChangeLog
View file @
d1aed877
2002-11-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* decl.c (java_init_decl_processing): Use `LL' on 64-bit constant.
2002-11-25 Diego Novillo <dnovillo@redhat.com>
* jcf-reader.c: Don't expand JCF_readu4 inside the
...
...
gcc/java/decl.c
View file @
d1aed877
...
...
@@ -464,7 +464,7 @@ java_init_decl_processing ()
decimal_int_max
=
build_int_2
(
0x80000000
,
0
);
TREE_TYPE
(
decimal_int_max
)
=
unsigned_int_type_node
;
#if HOST_BITS_PER_WIDE_INT == 64
decimal_long_max
=
build_int_2
(
0x8000000000000000
,
0
);
decimal_long_max
=
build_int_2
(
0x8000000000000000
LL
,
0
);
#else
#if HOST_BITS_PER_WIDE_INT == 32
decimal_long_max
=
build_int_2
(
0
,
0x80000000
);
...
...
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