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
df06baf2
Commit
df06baf2
authored
Mar 15, 2011
by
Ramana Radhakrishnan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Actually delete it as svn rename seemed to fail
From-SVN: r171005
parent
9751171c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
26 deletions
+0
-26
gcc/testsuite/gcc.target/arm/pr47688.c
+0
-26
No files found.
gcc/testsuite/gcc.target/arm/pr47688.c
deleted
100644 → 0
View file @
9751171c
/* { dg-options "-mthumb -O2" } */
/* { dg-require-effective-target arm_thumb2_ok } */
/* { dg-final { scan-assembler-not "-32768" } } */
typedef
union
{
unsigned
long
int
u_32_value
;
struct
{
unsigned
short
int
u_16_value_0
;
unsigned
short
int
u_16_value_1
;
}
u_16_values
;
}
my_union
;
unsigned
long
int
Test
(
const
unsigned
short
int
wXe
)
{
my_union
dwCalcVal
;
dwCalcVal
.
u_16_values
.
u_16_value_0
=
wXe
;
dwCalcVal
.
u_16_values
.
u_16_value_1
=
0x8000u
;
dwCalcVal
.
u_32_value
/=
3
;
return
(
dwCalcVal
.
u_32_value
);
}
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