sync mainline to 3.1

From-SVN: r53034
This commit is contained in:
Bruce Korb 2002-05-02 05:18:08 +00:00 committed by Bruce Korb
parent 76ccdb3c4a
commit abaa8559b3
4 changed files with 13 additions and 2 deletions

View File

@ -5,6 +5,12 @@
* config/rs6000/rs6000.c (rs6000_legitimate_address): Disallow
PRE_INC and PRE_DEC for altivec modes.
2002-05-01 Bruce Korb <bkorb@gnu.org>
* fixinc/check.tpl(set-writable): make sure the function exists first
* fixinc/inclhack.def(alpha_assert): fix test_text
* fixinc/tests/base/assert.h: add in missing result
2002-05-01 Jeff Law <law@redhat.com>
* pa.h (EXTRA_CONSTRAINT): Don't accept PIC addresses for the

View File

@ -171,6 +171,6 @@ else
fi
$exitok[=
(set-writable)
(if (defined? 'set-writable) (set-writable))
=]

View File

@ -2089,7 +2089,7 @@ fix = {
select = '__cplusplus < 54321L';
sed = 's/defined(__cplusplus) && (__cplusplus < 54321L)/0/';
test_text = '#if\tdefined(__cplusplus) && (__cplusplus < 54321L)';
test_text = "#if\tdefined(__cplusplus) && (__cplusplus < 54321L)";
};
/*

View File

@ -24,6 +24,11 @@ extern void __assert(const char *, const char *, int);
#endif /* ALPHA___ASSERT_CHECK */
#if defined( ALPHA_ASSERT_CHECK )
#define assert(EX) ((EX) ? (void)0 : __assert(#EX, __FILE__, __LINE__))
#endif /* ALPHA_ASSERT_CHECK */
#if defined( BROKEN_ASSERT_STDIO_CHECK )
extern FILE* stderr;
#endif /* BROKEN_ASSERT_STDIO_CHECK */