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
83a4e6e9
Commit
83a4e6e9
authored
Nov 23, 2009
by
Andy Hutchinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.dg/torture/pr37868.c: Use smaller bitfield for 16bit int targets.
From-SVN: r154474
parent
dc8926ce
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
1 deletions
+16
-1
gcc/testsuite/ChangeLog
+5
-0
gcc/testsuite/gcc.dg/torture/pr37868.c
+11
-1
No files found.
gcc/testsuite/ChangeLog
View file @
83a4e6e9
2009-11-23 Andy Hutchinson <hutchinsonandy@gcc.gnu.org>
* gcc.dg/torture/pr37868.c: Use smaller bitfield for 16bit int
targets.
2009-11-23 Andy Hutchinson <hutchinsonandy@gcc.gnu.org>
* gcc.dg/tree-ssa/pr33920.c: Remove warning check for 16 bit target.
2009-11-23 Andy Hutchinson <hutchinsonandy@gcc.gnu.org>
...
...
gcc/testsuite/gcc.dg/torture/pr37868.c
View file @
83a4e6e9
...
...
@@ -3,7 +3,14 @@
/* { dg-skip-if "unaligned access" { sparc*-*-* } "*" "" } */
extern
void
abort
(
void
);
#if (__SIZEOF_INT__ <= 2)
struct
X
{
unsigned
char
pad
:
4
;
unsigned
int
a
:
16
;
unsigned
int
b
:
8
;
unsigned
int
c
:
6
;
}
__attribute__
((
packed
));
#else
struct
X
{
unsigned
char
pad
:
4
;
unsigned
int
a
:
32
;
...
...
@@ -11,6 +18,9 @@ struct X {
unsigned
int
c
:
6
;
}
__attribute__
((
packed
));
#endif
int
main
(
void
)
{
struct
X
x
;
...
...
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