memcpy.S (530bff3f19e9cb93492d1e4841615a816f640edd) memcpy.S (a2dee2ad37ec488f5038c1cfb67c22533420d3e2)
1/*
1/*
2 * Copyright (C) 2012 Andrew Turner
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
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright

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

27
28#include <machine/asm.h>
29__FBSDID("$FreeBSD$");
30
31#ifdef __ARM_EABI__
32
33ENTRY_NP(__aeabi_memcpy)
34 b memcpy
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
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright

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

27
28#include <machine/asm.h>
29__FBSDID("$FreeBSD$");
30
31#ifdef __ARM_EABI__
32
33ENTRY_NP(__aeabi_memcpy)
34 b memcpy
35END(__aeabi_memcpy)
35
36#endif
37
36
37#endif
38