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
04cdd3c6
Commit
04cdd3c6
authored
May 19, 2008
by
Kaveh Ghazi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add file omitted from last checkin.
From-SVN: r135525
parent
678a51b3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
56 additions
and
0 deletions
+56
-0
gcc/testsuite/gcc.dg/torture/builtin-isinf_sign-1.c
+56
-0
No files found.
gcc/testsuite/gcc.dg/torture/builtin-isinf_sign-1.c
0 → 100644
View file @
04cdd3c6
/* Copyright (C) 2008 Free Software Foundation.
Verify that __builtin_isinf_sign folds correctly.
Origin: Kaveh R. Ghazi, May 17, 2008. */
/* { dg-do link } */
/* All references to link_error should go away at compile-time. */
extern
void
link_error
(
int
);
void
__attribute__
((
__noinline__
))
foo
(
float
f
,
double
d
,
long
double
ld
)
{
/* Test the generic expansion of isinf_sign. */
if
(
__builtin_isinf_sign
(
f
)
!=
(
__builtin_isinf
(
f
)
?
(
__builtin_signbitf
(
f
)
?
-
1
:
1
)
:
0
))
link_error
(
__LINE__
);
if
(
__builtin_isinf_sign
(
d
)
!=
(
__builtin_isinf
(
d
)
?
(
__builtin_signbit
(
d
)
?
-
1
:
1
)
:
0
))
link_error
(
__LINE__
);
if
(
__builtin_isinf_sign
(
ld
)
!=
(
__builtin_isinf
(
ld
)
?
(
__builtin_signbitl
(
ld
)
?
-
1
:
1
)
:
0
))
link_error
(
__LINE__
);
/* In boolean contexts, GCC will fold the inner conditional
expression to 1. So isinf_sign folds to plain isinf. */
if
((
_Bool
)
__builtin_isinf_sign
(
f
)
!=
(
__builtin_isinf
(
f
)
!=
0
))
link_error
(
__LINE__
);
if
((
_Bool
)
__builtin_isinf_sign
(
d
)
!=
(
__builtin_isinf
(
d
)
!=
0
))
link_error
(
__LINE__
);
if
((
_Bool
)
__builtin_isinf_sign
(
ld
)
!=
(
__builtin_isinf
(
ld
)
!=
0
))
link_error
(
__LINE__
);
if
((
__builtin_isinf_sign
(
f
)
!=
0
)
!=
(
__builtin_isinf
(
f
)
!=
0
))
link_error
(
__LINE__
);
if
((
__builtin_isinf_sign
(
d
)
!=
0
)
!=
(
__builtin_isinf
(
d
)
!=
0
))
link_error
(
__LINE__
);
if
((
__builtin_isinf_sign
(
ld
)
!=
0
)
!=
(
__builtin_isinf
(
ld
)
!=
0
))
link_error
(
__LINE__
);
if
((
__builtin_isinf_sign
(
f
)
?
5
:
6
)
!=
(
__builtin_isinf
(
f
)
?
5
:
6
))
link_error
(
__LINE__
);
if
((
__builtin_isinf_sign
(
d
)
?
5
:
6
)
!=
(
__builtin_isinf
(
d
)
?
5
:
6
))
link_error
(
__LINE__
);
if
((
__builtin_isinf_sign
(
ld
)
?
5
:
6
)
!=
(
__builtin_isinf
(
ld
)
?
5
:
6
))
link_error
(
__LINE__
);
}
int
main
(
void
)
{
foo
(
1
,
2
,
3
);
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