diff options
| author | David E. O'Brien <obrien@FreeBSD.org> | 2002-05-15 04:19:49 +0000 |
|---|---|---|
| committer | David E. O'Brien <obrien@FreeBSD.org> | 2002-05-15 04:19:49 +0000 |
| commit | d03f581f32a2d6e133c38e94d3c13d86d4fff9da (patch) | |
| tree | 71821c5a0abf407164cad0ea76d27d9260af77ef | |
| parent | 38c2b7d99b27f49eaa32ff988b902c0d3bcaac69 (diff) | |
Notes
| -rw-r--r-- | lib/csu/amd64/crti.S | 5 | ||||
| -rw-r--r-- | lib/csu/amd64/crtn.S | 5 | ||||
| -rw-r--r-- | lib/csu/i386-elf/crti.S | 5 | ||||
| -rw-r--r-- | lib/csu/i386-elf/crtn.S | 5 | ||||
| -rw-r--r-- | lib/csu/powerpc/crti.S | 6 | ||||
| -rw-r--r-- | lib/csu/powerpc/crtn.S | 6 |
6 files changed, 20 insertions, 12 deletions
diff --git a/lib/csu/amd64/crti.S b/lib/csu/amd64/crti.S index 82b262f4dcbe..b2e99e4088d8 100644 --- a/lib/csu/amd64/crti.S +++ b/lib/csu/amd64/crti.S @@ -21,8 +21,6 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ .section .init,"ax",@progbits @@ -36,3 +34,6 @@ _init: .globl _fini .type _fini,@function _fini: + + .section .rodata +.ascii "$FreeBSD$\0" diff --git a/lib/csu/amd64/crtn.S b/lib/csu/amd64/crtn.S index 361ab1e2e157..b2322daa5ee6 100644 --- a/lib/csu/amd64/crtn.S +++ b/lib/csu/amd64/crtn.S @@ -21,8 +21,6 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ .section .init,"ax",@progbits @@ -30,3 +28,6 @@ .section .fini,"ax",@progbits ret + + .section .rodata +.ascii "$FreeBSD$\0" diff --git a/lib/csu/i386-elf/crti.S b/lib/csu/i386-elf/crti.S index 82b262f4dcbe..b2e99e4088d8 100644 --- a/lib/csu/i386-elf/crti.S +++ b/lib/csu/i386-elf/crti.S @@ -21,8 +21,6 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ .section .init,"ax",@progbits @@ -36,3 +34,6 @@ _init: .globl _fini .type _fini,@function _fini: + + .section .rodata +.ascii "$FreeBSD$\0" diff --git a/lib/csu/i386-elf/crtn.S b/lib/csu/i386-elf/crtn.S index 361ab1e2e157..b2322daa5ee6 100644 --- a/lib/csu/i386-elf/crtn.S +++ b/lib/csu/i386-elf/crtn.S @@ -21,8 +21,6 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ .section .init,"ax",@progbits @@ -30,3 +28,6 @@ .section .fini,"ax",@progbits ret + + .section .rodata +.ascii "$FreeBSD$\0" diff --git a/lib/csu/powerpc/crti.S b/lib/csu/powerpc/crti.S index ce0277710b7c..75d4345cad2d 100644 --- a/lib/csu/powerpc/crti.S +++ b/lib/csu/powerpc/crti.S @@ -21,8 +21,6 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ .section .init,"ax",@progbits @@ -46,3 +44,7 @@ _fini: stw 31,12(1) stw 0,20(1) mr 31,1 + + + .section .rodata +.ascii "$FreeBSD$\0" diff --git a/lib/csu/powerpc/crtn.S b/lib/csu/powerpc/crtn.S index 72309aa7ca8d..80735cc3a8ab 100644 --- a/lib/csu/powerpc/crtn.S +++ b/lib/csu/powerpc/crtn.S @@ -21,8 +21,6 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ .section .init,"ax",@progbits @@ -41,3 +39,7 @@ lwz 31,-4(11) mr 1,11 blr + + + .section .rodata +.ascii "$FreeBSD$\0" |
