mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-05 02:29:40 +08:00
rs6000.c (rs6000_override_options): Always clear flag_pic for ABI_AIX.
* config/rs6000/rs6000.c (rs6000_override_options): Always clear flag_pic for ABI_AIX. From-SVN: r52591
This commit is contained in:
parent
5b3dc8155f
commit
894bdff6f2
@ -1,3 +1,8 @@
|
|||||||
|
2002-04-22 Alan Modra <amodra@bigpond.net.au>
|
||||||
|
|
||||||
|
* config/rs6000/rs6000.c (rs6000_override_options): Always clear
|
||||||
|
flag_pic for ABI_AIX.
|
||||||
|
|
||||||
2002-04-21 Neil Booth <neil@daikokuya.demon.co.uk>
|
2002-04-21 Neil Booth <neil@daikokuya.demon.co.uk>
|
||||||
|
|
||||||
* cppexp.c (struct op, parse_number): Replace U_CHAR with uchar.
|
* cppexp.c (struct op, parse_number): Replace U_CHAR with uchar.
|
||||||
|
@ -483,10 +483,11 @@ rs6000_override_options (default_cpu)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (flag_pic && DEFAULT_ABI == ABI_AIX && extra_warnings)
|
if (flag_pic && DEFAULT_ABI == ABI_AIX)
|
||||||
{
|
{
|
||||||
warning ("-f%s ignored (all code is position independent)",
|
if (extra_warnings)
|
||||||
(flag_pic > 1) ? "PIC" : "pic");
|
warning ("-f%s ignored (all code is position independent)",
|
||||||
|
(flag_pic > 1) ? "PIC" : "pic");
|
||||||
flag_pic = 0;
|
flag_pic = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user