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
3353ebf0
Commit
3353ebf0
authored
Jul 28, 2005
by
Dorit Nuzman
Committed by
Dorit Nuzman
Jul 28, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.dg/vect/vect-reduc-1char.c: Fix data to fit in char.
From-SVN: r102488
parent
5bb1823d
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-reduc-1char.c
+2
-2
No files found.
gcc/testsuite/ChangeLog
View file @
3353ebf0
2005
-
07
-
28
Dorit
Nuzman
<
dorit
@il
.
ibm
.
com
>
*
gcc
.
dg
/
vect
/
vect
-
reduc
-
1
char
.
c
:
Fix
data
to
fit
in
char
.
2005
-
07
-
28
Dorit
Nuzman
<
dorit
@il
.
ibm
.
com
>
PR
tree
-
optimization
/
22506
*
gcc
.
dg
/
vect
/
ps22506
.
c
:
New
test
.
...
...
gcc/testsuite/gcc.dg/vect/vect-reduc-1char.c
View file @
3353ebf0
...
...
@@ -4,13 +4,13 @@
#include "tree-vect.h"
#define N 16
#define DIFF
24
2
#define DIFF
12
2
void
main1
(
unsigned
char
x
,
unsigned
char
max_result
,
unsigned
char
min_result
)
{
int
i
;
unsigned
char
ub
[
N
]
=
{
1
,
3
,
6
,
9
,
12
,
15
,
18
,
21
,
24
,
27
,
30
,
33
,
36
,
39
,
42
,
45
};
unsigned
char
ub
[
N
]
=
{
1
,
2
,
4
,
6
,
8
,
10
,
12
,
14
,
16
,
18
,
20
,
22
,
24
,
26
,
28
,
30
};
unsigned
char
uc
[
N
]
=
{
1
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
,
10
,
11
,
12
,
13
,
14
,
15
};
unsigned
char
udiff
=
2
;
unsigned
char
umax
=
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