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
4913b608
Commit
4913b608
authored
Nov 02, 1998
by
Doug Evans
Committed by
Doug Evans
Nov 02, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* execute/memcpy-bi.c: New testcase.
From-SVN: r23501
parent
57c69a87
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
56 additions
and
0 deletions
+56
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.c-torture/execute/memcpy-bi.c
+52
-0
No files found.
gcc/testsuite/ChangeLog
View file @
4913b608
Mon Nov 2 11:16:03 1998 Doug Evans <devans@canuck.cygnus.com>
* execute/memcpy-bi.c: New testcase.
1998-10-31 Alexandre Oliva <oliva@dcc.unicamp.br>
* g++.old-deja/g++.pt/sizeof3.C: a similar testcase not involving
...
...
gcc/testsuite/gcc.c-torture/execute/memcpy-bi.c
0 → 100644
View file @
4913b608
/* Test builtin-memcpy (which may emit different code for different N). */
#define TESTSIZE 80
char
src
[
TESTSIZE
]
__attribute__
((
aligned
));
char
dst
[
TESTSIZE
]
__attribute__
((
aligned
));
void
check
(
char
*
test
,
char
*
match
,
int
n
)
{
if
(
memcmp
(
test
,
match
,
n
))
abort
();
}
#define TN(n) \
{ memset (dst, 0, n); memcpy (dst, src, n); check (dst, src, n); }
#define T(n) \
TN (n) \
TN ((n) + 1) \
TN ((n) + 2) \
TN ((n) + 3)
main
()
{
int
i
,
j
;
for
(
i
=
0
;
i
<
sizeof
(
src
);
++
i
)
src
[
i
]
=
'a'
+
i
%
26
;
T
(
0
);
T
(
4
);
T
(
8
);
T
(
12
);
T
(
16
);
T
(
20
);
T
(
24
);
T
(
28
);
T
(
32
);
T
(
36
);
T
(
40
);
T
(
44
);
T
(
48
);
T
(
52
);
T
(
56
);
T
(
60
);
T
(
64
);
T
(
68
);
T
(
72
);
T
(
76
);
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