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
792ae36d
Commit
792ae36d
authored
Sep 05, 2000
by
Kaveh R. Ghazi
Committed by
Kaveh Ghazi
Sep 05, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.dg/wtr-int-type-1.c: Fix for 64-bit platforms.
From-SVN: r36160
parent
7c097ee9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
4 deletions
+29
-4
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.dg/wtr-int-type-1.c
+25
-4
No files found.
gcc/testsuite/ChangeLog
View file @
792ae36d
2000-09-05 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gcc.dg/wtr-int-type-1.c: Fix for 64-bit platforms.
2000-09-04 Nathan Sidwell <nathan@codesourcery.com>
* g++.old-deja/g++.pt/crash57.C: New test.
...
...
gcc/testsuite/gcc.dg/wtr-int-type-1.c
View file @
792ae36d
...
...
@@ -9,16 +9,37 @@ testfunc (void)
{
long
long
i
;
/* Octal and hex values shouldn't issue -Wtraditional warnings. */
i
=
0x80000000
;
i
=
0xFFFFFFFF
;
i
=
037777777777
;
i
=
0x8000000000000000
;
i
=
9223372036854775807
;
/* { dg-warning "integer constant.*with -traditional" "integer constant" } */
i
=
4294967295
;
/* { dg-warning "decimal constant|integer constant.*with -traditional" "integer constant" } */
i
=
0xFFFFFFFFFFFFFFFF
;
i
=
01777777777777777777777
;
/* We expect to get either a "width of integer constant changes with
-traditional" warning or an "integer constant is unsigned in ISO
C, signed with -traditional" warning depending on whether we are
testing on a 32 or 64 bit platform. Either warning means the
test passes and both matched by checking for "integer constant". */
i
=
18446744073709551615
;
/* { dg-warning "integer constant" "integer constant" } */
#line
18
"sys-header.h" 3
#line
29
"sys-header.h" 3
/* We are in system headers now, no -Wtraditional warnings should issue. */
i
=
0x80000000
;
i
=
0xFFFFFFFF
;
i
=
037777777777
;
i
=
0x8000000000000000
;
i
=
0xFFFFFFFFFFFFFFFF
;
i
=
01777777777777777777777
;
i
=
9223372036854775807
;
i
=
4294967295
;
/* { dg-warning "decimal constant" "decimal constant" } */
i
=
18446744073709551615
;
}
/* Ignore "decimal constant is so large that it is unsigned" warnings. */
/* { dg-warning "decimal constant" "decimal constant" { target *-*-* } 26 } */
/* { dg-warning "decimal constant" "decimal constant" { target *-*-* } 40 } */
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