Commit 20c8a6c2 by Jim Wilson Committed by Jim Wilson

Fix problem with relocs in read-only sections for C++ code.

	* config/ia64/sysv4.h (SELECT_SECTION): Use data_section if
	flag_pic and RELOC.

From-SVN: r33239
parent 86702e31
Tue Apr 18 16:04:12 2000 Jim Wilson <wilson@cygnus.com>
* config/ia64/sysv4.h (SELECT_SECTION): Use data_section if
flag_pic and RELOC.
2000-04-18 Zack Weinberg <zack@wolery.cumb.org>
* cccp.c, cexp.y, cexp.c, cccp.1: Removed.
......
......@@ -206,6 +206,10 @@ do { \
else \
data_section (); \
} \
/* This could be a CONSTRUCTOR containing ADDR_EXPR of a VAR_DECL, \
in which case we can't put it in a shared library rodata. */ \
else if (flag_pic && (RELOC)) \
data_section (); \
else \
const_section (); \
}
......
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