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
9ebbe8cc
Commit
9ebbe8cc
authored
Aug 25, 2005
by
Alan Modra
Committed by
Alan Modra
Aug 25, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.dg/vect/vect-52.c: Increase b[] and c[] size by one.
From-SVN: r103480
parent
99f4c49e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.dg/vect/vect-52.c
+2
-2
No files found.
gcc/testsuite/ChangeLog
View file @
9ebbe8cc
2005
-
08
-
25
Alan
Modra
<
amodra
@bigpond
.
net
.
au
>
2005
-
08
-
25
Alan
Modra
<
amodra
@bigpond
.
net
.
au
>
*
gcc
.
dg
/
vect
/
vect
-
52
.
c
:
Increase
b
[]
and
c
[]
size
by
one
.
2005
-
08
-
25
Alan
Modra
<
amodra
@bigpond
.
net
.
au
>
*
gcc
.
dg
/
20020103
-
1
.
c
:
Scan
for
LC
[
0
-
9
],
not
LC
.
*
gcc
.
dg
/
20020103
-
1
.
c
:
Scan
for
LC
[
0
-
9
],
not
LC
.
*
gcc
.
dg
/
altivec
-
22
.
c
:
Rename
from
..
*
gcc
.
dg
/
altivec
-
22
.
c
:
Rename
from
..
*
gcc
.
dg
/
altivec
-
nomfcr
.
c
:
..
this
.
*
gcc
.
dg
/
altivec
-
nomfcr
.
c
:
..
this
.
...
...
gcc/testsuite/gcc.dg/vect/vect-52.c
View file @
9ebbe8cc
...
@@ -41,8 +41,8 @@ int main (void)
...
@@ -41,8 +41,8 @@ int main (void)
{
{
int
i
;
int
i
;
float
a
[
N
]
__attribute__
((
__aligned__
(
16
)));
float
a
[
N
]
__attribute__
((
__aligned__
(
16
)));
float
b
[
N
]
__attribute__
((
__aligned__
(
16
)))
=
{
0
,
3
,
6
,
9
,
12
,
15
,
18
,
21
,
24
,
27
,
30
,
33
,
36
,
39
,
42
,
45
,
48
,
51
,
54
,
57
,
60
};
float
b
[
N
+
1
]
__attribute__
((
__aligned__
(
16
)))
=
{
0
,
3
,
6
,
9
,
12
,
15
,
18
,
21
,
24
,
27
,
30
,
33
,
36
,
39
,
42
,
45
,
48
,
51
,
54
,
57
,
60
};
float
c
[
N
]
__attribute__
((
__aligned__
(
16
)))
=
{
0
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
,
13
,
14
,
15
,
16
,
17
,
18
,
19
,
20
};
float
c
[
N
+
1
]
__attribute__
((
__aligned__
(
16
)))
=
{
0
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
,
13
,
14
,
15
,
16
,
17
,
18
,
19
,
20
};
check_vect
();
check_vect
();
...
...
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