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
bf50d091
Commit
bf50d091
authored
Oct 03, 2004
by
Frank Ch. Eigler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* fixing typos in accidental checkin
From-SVN: r88463
parent
3f75a254
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
libmudflap/testsuite/libmudflap.c/fail33-frag.c
+2
-2
No files found.
libmudflap/testsuite/libmudflap.c/fail33-frag.c
View file @
bf50d091
...
...
@@ -7,14 +7,14 @@ char a[SIZE];
int
main
()
{
int
i
,
j
=
0
;
int
i
,
j
=
0
,
k
;
int
a_before_b
=
(
&
a
[
0
]
<
&
b
[
0
]);
/* Rather than iterating linearly, which would allow loop unrolling
and mapping to pointer manipulation, we traverse the "joined"
arrays in some random order. */
for
(
i
=
0
;
i
<
SIZE
*
2
;
i
++
)
{
k
=
rand
()
%
(
SIZE
*
2
))
k
=
rand
()
%
(
SIZE
*
2
);
j
+=
(
a_before_b
?
a
[
k
]
:
b
[
k
]);
}
return
j
;
...
...
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