mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-10 04:20:29 +08:00
mips.c (override_options): Only warn about -mint64 deprecation if TARGET_INT64.
* config/mips/mips.c (override_options): Only warn about -mint64 deprecation if TARGET_INT64. From-SVN: r96299
This commit is contained in:
parent
74124c73c1
commit
266c6b40ed
@ -1,3 +1,8 @@
|
||||
2005-03-11 Richard Sandiford <rsandifo@redhat.com>
|
||||
|
||||
* config/mips/mips.c (override_options): Only warn about -mint64
|
||||
deprecation if TARGET_INT64.
|
||||
|
||||
2005-03-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
||||
|
||||
* builtin-attrs.def (ATTR_NONNULL_LIST, ATTR_NOTHROW_NONNULL,
|
||||
|
@ -4132,7 +4132,7 @@ override_options (void)
|
||||
}
|
||||
|
||||
/* Deprecate -mint64. Remove after 4.0 branches. */
|
||||
if ((target_flags_explicit & MASK_INT64) != 0)
|
||||
if (TARGET_INT64)
|
||||
warning ("-mint64 is a deprecated option");
|
||||
|
||||
if (MIPS_MARCH_CONTROLS_SOFT_FLOAT
|
||||
|
Loading…
x
Reference in New Issue
Block a user