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
d64427ff
Commit
d64427ff
authored
Apr 21, 2010
by
Kaveh R. Ghazi
Committed by
Kaveh Ghazi
Apr 21, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
builtin-cproj-3.c: New.
* gcc.dg/torture/builtin-cproj-3.c: New. From-SVN: r158588
parent
2d2d5a91
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
0 deletions
+29
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.dg/torture/builtin-cproj-3.c
+25
-0
No files found.
gcc/testsuite/ChangeLog
View file @
d64427ff
2010-04-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* gcc.dg/torture/builtin-cproj-3.c: New.
2010-04-20 Jason Merrill <jason@redhat.com>
PR c++/9335
...
...
gcc/testsuite/gcc.dg/torture/builtin-cproj-3.c
0 → 100644
View file @
d64427ff
/* Copyright (C) 2010 Free Software Foundation.
Check the runtime behavior of the C library's cproj() function and
whether it follows the standard. Versions of GLIBC through 2.11.1
had an incorrect implementation which will conflict with GCC's
builtin cproj(). GLIBC 2.12+ should be okay.
Origin: Kaveh R. Ghazi, April 20, 2010. */
/* { dg-do run } */
/* { dg-options "-fno-builtin-cproj" } */
/* { dg-add-options c99_runtime } */
/* { dg-require-effective-target c99_runtime } */
extern
void
abort
(
void
);
extern
void
exit
(
int
);
double
_Complex
cproj
(
double
_Complex
);
int
main
(
void
)
{
if
(
cproj
(
2
+
3
i
)
!=
2
+
3
i
)
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