Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 344922
b: refs/heads/master
c: 423c01e
h: refs/heads/master
v: v3
  • Loading branch information
Greg Ungerer committed Dec 5, 2012
1 parent 8c5d261 commit d660bf6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3c46041769adecf3ed964cbd1e6bd4324d063450
refs/heads/master: 423c01eac31fe9e6c9eee7bf45ace9abcd57251b
3 changes: 2 additions & 1 deletion trunk/arch/m68k/lib/memcpy.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
void *memcpy(void *to, const void *from, size_t n)
{
void *xto = to;
size_t temp, temp1;
size_t temp;

if (!n)
return xto;
Expand Down Expand Up @@ -47,6 +47,7 @@ void *memcpy(void *to, const void *from, size_t n)
for (; temp; temp--)
*lto++ = *lfrom++;
#else
size_t temp1;
asm volatile (
" movel %2,%3\n"
" andw #7,%3\n"
Expand Down

0 comments on commit d660bf6

Please sign in to comment.