diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2013-01-11 21:23:25 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2013-01-11 21:23:25 +0000 |
commit | 4a291bbe5e97409cc4d114943b143fc614fc5f0b (patch) | |
tree | 12a7df388a845a08eda5abe64d1a0cb97c69227c /lib/librthread/arch | |
parent | 0ee79688ac536baad82a4d388a767452872c2936 (diff) |
Add END() directives to the various functions.
Make the code PIC-aware when necessary (i.e. invoke other functions through
the PLT, and access global data through the GOT). No change for non-PIC
compilation.
Diffstat (limited to 'lib/librthread/arch')
-rw-r--r-- | lib/librthread/arch/m88k/cerror.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/librthread/arch/m88k/cerror.S b/lib/librthread/arch/m88k/cerror.S index bdc4c05029e..e1085eabddd 100644 --- a/lib/librthread/arch/m88k/cerror.S +++ b/lib/librthread/arch/m88k/cerror.S @@ -1,4 +1,4 @@ -/* $OpenBSD: cerror.S,v 1.2 2013/01/05 11:20:55 miod Exp $ */ +/* $OpenBSD: cerror.S,v 1.3 2013/01/11 21:23:24 miod Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -53,3 +53,4 @@ ASENTRY(__cerror) ld %r25,%r0,%r31 jmp.n %r1 addu %r31,%r31,16 +END(__cerror) |