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
b7e48b2d
Commit
b7e48b2d
authored
May 25, 1999
by
Nick Clifton
Committed by
Nick Clifton
May 25, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Explicitly declare signed bitfields as signed.
From-SVN: r27137
parent
d89ccde6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
gcc/testsuite/gcc.c-torture/ChangeLog
+5
-0
gcc/testsuite/gcc.c-torture/execute/bf-sign-2.c
+2
-2
No files found.
gcc/testsuite/gcc.c-torture/ChangeLog
View file @
b7e48b2d
1999-05-25 Nick Clifton <nickc@cygnus.com>
* execute/bf-sign-2.c: Explicitly declare signed bitfields as
signed.
Wed Apr 7 23:08:59 1999 Jim Wilson <wilson@cygnus.com>
Wed Apr 7 23:08:59 1999 Jim Wilson <wilson@cygnus.com>
* execute/920501-7.c (main): Delete __I960__ ifndef.
* execute/920501-7.c (main): Delete __I960__ ifndef.
...
...
gcc/testsuite/gcc.c-torture/execute/bf-sign-2.c
View file @
b7e48b2d
...
@@ -15,8 +15,8 @@
...
@@ -15,8 +15,8 @@
struct
X
{
struct
X
{
unsigned
int
u3
:
3
;
unsigned
int
u3
:
3
;
long
int
s31
:
31
;
signed
long
int
s31
:
31
;
long
int
s32
:
32
;
signed
long
int
s32
:
32
;
unsigned
long
int
u31
:
31
;
unsigned
long
int
u31
:
31
;
unsigned
long
int
u32
:
32
;
unsigned
long
int
u32
:
32
;
unsigned
long
long
ull3
:
3
;
unsigned
long
long
ull3
:
3
;
...
...
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