memcpy.S (552311f4bb98c81b1b9e0e81d74e0262fc12110b) memcpy.S (97f8390e7d46efe752586bb3812e78ae0c277cfd)
1/*
2 * Copyright (C) 2013 Andrew Turner
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 */
27
28#include <machine/asm.h>
29__FBSDID("$FreeBSD$");
30
31#ifdef __ARM_EABI__
32
33ENTRY_NP(__aeabi_memcpy)
1/*
2 * Copyright (C) 2013 Andrew Turner
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 */
27
28#include <machine/asm.h>
29__FBSDID("$FreeBSD$");
30
31#ifdef __ARM_EABI__
32
33ENTRY_NP(__aeabi_memcpy)
34EENTRY_NP(__aeabi_memcpy4)
35EENTRY_NP(__aeabi_memcpy8)
34 b memcpy
36 b memcpy
37EEND(__aeabi_memcpy8)
38EEND(__aeabi_memcpy4)
35END(__aeabi_memcpy)
36
37#endif
38
39END(__aeabi_memcpy)
40
41#endif
42