SH also has a bogus DT_TEXTREL, it seems.

This commit is contained in:
marcus 2003-06-30 00:49:25 +00:00
parent 725c585956
commit 5404577abf
1 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: rtld.c,v 1.94 2003/06/05 10:41:33 simonb Exp $ */ /* $NetBSD: rtld.c,v 1.95 2003/06/30 00:49:25 marcus Exp $ */
/* /*
* Copyright 1996 John D. Polstra. * Copyright 1996 John D. Polstra.
@ -156,8 +156,8 @@ _rtld_init(mapbase, relocbase)
_rtld_digest_dynamic(&_rtld_objself); _rtld_digest_dynamic(&_rtld_objself);
assert(!_rtld_objself.needed && !_rtld_objself.pltrel && assert(!_rtld_objself.needed && !_rtld_objself.pltrel &&
!_rtld_objself.pltrela); !_rtld_objself.pltrela);
#ifndef __mips__ #if !defined(__mips__) && !defined(__sh__)
/* MIPS has a bogus DT_TEXTREL. */ /* MIPS and SH have a bogus DT_TEXTREL. */
assert(!_rtld_objself.pltgot && !_rtld_objself.textrel); assert(!_rtld_objself.pltgot && !_rtld_objself.textrel);
#endif #endif