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
377eaca7
Commit
377eaca7
authored
May 14, 2016
by
Uros Bizjak
Committed by
Uros Bizjak
May 14, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
i * gcc.dg/vect/pr66636.c (foo): Add __attribute__((noinline,noclone)).
From-SVN: r236238
parent
5fe79728
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
+4
-2
gcc/testsuite/ChangeLog
+1
-0
gcc/testsuite/gcc.dg/vect/pr66636.c
+2
-1
gcc/testsuite/gcc.dg/vect/tree-vect.h
+1
-1
No files found.
gcc/testsuite/ChangeLog
View file @
377eaca7
...
...
@@ -18,6 +18,7 @@
* gcc.dg/vect/tree-vect.h (check_vect): Handle AVX2,
remove XOP handling.
* gcc.dg/vect/pr66636.c (foo): Add __attribute__((noinline,noclone)).
2016-05-13 Nathan Sidwell <nathan@acm.org>
...
...
gcc/testsuite/gcc.dg/vect/pr66636.c
View file @
377eaca7
...
...
@@ -6,7 +6,8 @@ extern void abort (void);
struct
X
{
double
x
;
double
y
;
};
void
foo
(
struct
X
*
x
,
double
px
,
int
s
)
void
__attribute__
((
noinline
,
noclone
))
foo
(
struct
X
*
x
,
double
px
,
int
s
)
{
int
i
;
for
(
i
=
0
;
i
<
256
;
++
i
)
...
...
gcc/testsuite/gcc.dg/vect/tree-vect.h
View file @
377eaca7
...
...
@@ -38,7 +38,7 @@ check_vect (void)
/* Determine what instruction set we've been compiled for, and detect
that we're running with it. This allows us to at least do a compile
check for, e.g. SSE4.1 when the machine only supports SSE2. */
#if defined(__AVX2__)
#
if defined(__AVX2__)
want_level
=
7
,
want_b
=
bit_AVX2
;
# elif defined(__AVX__)
want_level
=
1
,
want_c
=
bit_AVX
;
...
...
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