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
232fd111
Commit
232fd111
authored
Dec 17, 2001
by
Andreas Jaeger
Committed by
Andreas Jaeger
Dec 17, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.c-torture/compile/20011217-2.c: New test.
From-SVN: r48097
parent
e536cfdf
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
1 deletions
+24
-1
gcc/testsuite/ChangeLog
+5
-1
gcc/testsuite/gcc.c-torture/compile/20011217-2.c
+19
-0
No files found.
gcc/testsuite/ChangeLog
View file @
232fd111
2001-12-17 Andreas Jaeger <aj@suse.de>
* gcc.c-torture/compile/20011217-2.c: New test.
2001-12-17 Joseph S. Myers <jsm28@cam.ac.uk>
2001-12-17 Joseph S. Myers <jsm28@cam.ac.uk>
* gcc.c-torture/compile/20011217-1.c: New test.
* gcc.c-torture/compile/20011217-1.c: New test.
...
@@ -25,7 +29,7 @@ Thu Dec 13 10:35:33 2001 Nicola Pero <n.pero@mi.flashnet.it>
...
@@ -25,7 +29,7 @@ Thu Dec 13 10:35:33 2001 Nicola Pero <n.pero@mi.flashnet.it>
* objc/execute/bf-21.m: New test.
* objc/execute/bf-21.m: New test.
* objc/execute/enumeration-1.m: New test.
* objc/execute/enumeration-1.m: New test.
* objc/execute/enumeration-2.m: New test.
* objc/execute/enumeration-2.m: New test.
2001-12-12 Jakub Jelinek <jakub@redhat.com>
2001-12-12 Jakub Jelinek <jakub@redhat.com>
* gcc.dg/gnu89-init-1.c: New test.
* gcc.dg/gnu89-init-1.c: New test.
...
...
gcc/testsuite/gcc.c-torture/compile/20011217-2.c
0 → 100644
View file @
232fd111
/* Test that the initializer of a compound literal is properly walked
when tree inlining. */
/* Origin: glibc (as reported in PR c/5105) from <aj@suse.de>. */
inline
int
finite
(
double
__x
)
{
return
(
__extension__
(((((
union
{
double
__d
;
int
__i
[
2
];
})
{
__d
:
__x
}).
__i
[
1
]
|
0x800fffffu
)
+
1
)
>>
31
));
}
int
main
(
void
)
{
double
x
=
1
.
0
;
return
finite
(
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