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
f67e0d11
Commit
f67e0d11
authored
Feb 20, 2002
by
Jakub Jelinek
Committed by
Jakub Jelinek
Feb 20, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.c-torture/execute/20020219-1.c: New test.
From-SVN: r49908
parent
f322b423
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
0 deletions
+25
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.c-torture/execute/20020219-1.c
+21
-0
No files found.
gcc/testsuite/ChangeLog
View file @
f67e0d11
2002-02-20 Jakub Jelinek <jakub@redhat.com>
* gcc.c-torture/execute/20020219-1.c: New test.
2002-02-17 Jakub Jelinek <jakub@redhat.com>
2002-02-17 Jakub Jelinek <jakub@redhat.com>
* gcc.c-torture/execute/20020216-1.c: New test.
* gcc.c-torture/execute/20020216-1.c: New test.
...
...
gcc/testsuite/gcc.c-torture/execute/20020219-1.c
0 → 100644
View file @
f67e0d11
/* PR c/4308
This testcase failed because 0x8000000000000000 >> 0
was incorrectly folded into 0xffffffff00000000. */
extern
void
abort
(
void
);
extern
void
exit
(
int
);
long
long
foo
(
void
)
{
long
long
C
=
1ULL
<<
63
,
X
;
int
Y
=
32
;
X
=
C
>>
(
Y
&
31
);
return
X
;
}
int
main
(
void
)
{
if
(
foo
()
!=
1ULL
<<
63
)
abort
();
exit
(
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