diff options
author | andrew <andrew@FreeBSD.org> | 2013-03-16 02:48:49 +0000 |
---|---|---|
committer | andrew <andrew@FreeBSD.org> | 2013-03-16 02:48:49 +0000 |
commit | 112fb744f44f1dc3da68930c1fa793d7b9c2a963 (patch) | |
tree | 98fc4b9a1f0a8e1ef0db153b3b8bbebcbcd05c49 /sys/arm/arm/fiq_subr.S | |
parent | 552a9fbc055835ad0b4dadbb343f5fa16f27cbdf (diff) | |
download | FreeBSD-src-112fb744f44f1dc3da68930c1fa793d7b9c2a963.zip FreeBSD-src-112fb744f44f1dc3da68930c1fa793d7b9c2a963.tar.gz |
Add an END macro to ARM. This is mostly used to tell gas where the bounds
of the functions are when creating the EABI unwind tables.
Diffstat (limited to 'sys/arm/arm/fiq_subr.S')
-rw-r--r-- | sys/arm/arm/fiq_subr.S | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/arm/arm/fiq_subr.S b/sys/arm/arm/fiq_subr.S index 4cde665..7f510b2 100644 --- a/sys/arm/arm/fiq_subr.S +++ b/sys/arm/arm/fiq_subr.S @@ -74,6 +74,7 @@ ENTRY(fiq_getregs) BACK_TO_SVC_MODE RET +END(fiq_getregs) /* * fiq_setregs: @@ -88,6 +89,7 @@ ENTRY(fiq_setregs) BACK_TO_SVC_MODE RET +END(fiq_setregs) /* * fiq_nullhandler: |