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
b511afdd
Commit
b511afdd
authored
Nov 03, 2009
by
Andy Hutchinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*gcc.c-torture/execute/pr40668.c: Correct for 16bit int size.
From-SVN: r153835
parent
c36abf03
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
2 deletions
+11
-2
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.c-torture/execute/pr40668.c
+7
-2
No files found.
gcc/testsuite/ChangeLog
View file @
b511afdd
2009-11-02 Andy Hutchinson <hutchinsonandy@gcc.gnu.org>
*gcc.c-torture/execute/pr40668.c: Correct for 16bit int size.
2009-11-02 Dodji Seketeli <dodji@redhat.com>
PR c++/41856
...
...
gcc/testsuite/gcc.c-torture/execute/pr40668.c
View file @
b511afdd
#if (__SIZEOF_INT__ == 2)
#define TESTVALUE 0x1234
#else
#define TESTVALUE 0x12345678
#endif
static
void
foo
(
unsigned
int
x
,
void
*
p
)
{
...
...
@@ -10,7 +15,7 @@ bar (int type, void *number)
switch
(
type
)
{
case
1
:
foo
(
0x12345678
,
number
);
foo
(
TESTVALUE
,
number
);
break
;
case
7
:
foo
(
0
,
number
);
...
...
@@ -29,7 +34,7 @@ main (void)
{
unsigned
int
x
;
bar
(
1
,
&
x
);
if
(
x
!=
0x12345678
)
if
(
x
!=
TESTVALUE
)
__builtin_abort
();
return
0
;
}
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