diff options
author | andrew <andrew@FreeBSD.org> | 2013-03-16 04:08:01 +0000 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2013-03-16 04:08:01 +0000 |
commit | faaba46948fb2a2f0c76f4ef57dc6d7384fd55fe (patch) | |
tree | 8f293aad43d868e14ddc8035b68886ed6282b02f /sys/libkern/arm/memcpy.S | |
parent | 147f0b89f3dc8b52074ba05825f0e444127c50f2 (diff) | |
download | FreeBSD-src-faaba46948fb2a2f0c76f4ef57dc6d7384fd55fe.zip FreeBSD-src-faaba46948fb2a2f0c76f4ef57dc6d7384fd55fe.tar.gz |
Add END to ARM libkern assembly functions
Diffstat (limited to 'sys/libkern/arm/memcpy.S')
-rw-r--r-- | sys/libkern/arm/memcpy.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/libkern/arm/memcpy.S b/sys/libkern/arm/memcpy.S index b2997db..9fca8f6 100644 --- a/sys/libkern/arm/memcpy.S +++ b/sys/libkern/arm/memcpy.S @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012 Andrew Turner + * Copyright (C) 2013 Andrew Turner * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -32,6 +32,7 @@ __FBSDID("$FreeBSD$"); ENTRY_NP(__aeabi_memcpy) b memcpy +END(__aeabi_memcpy) #endif |