Commit 86b0a4f3 by Andrew Pinski Committed by Andrew Pinski

* config/darwin.c (machopic_select_rtx_section): Fix check for PIC code.

From-SVN: r71617
parent 5f0ccd0b
2003-09-20 Andrew Pinski <apinski@apple.com>
* config/darwin.c (machopic_select_rtx_section): Fix check for PIC code.
2003-09-20 Nathanael Nerode <neroden@gcc.gnu.org>
* Makefile.in: Don't set (unused) DLLTOOL.
......
......@@ -1242,7 +1242,7 @@ machopic_select_rtx_section (enum machine_mode mode, rtx x,
&& (GET_CODE (x) == CONST_INT
|| GET_CODE (x) == CONST_DOUBLE))
literal4_section ();
else if (! MACHO_DYNAMIC_NO_PIC_P
else if (MACHOPIC_INDIRECT
&& (GET_CODE (x) == SYMBOL_REF
|| GET_CODE (x) == CONST
|| GET_CODE (x) == LABEL_REF))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment