Commit 1e5b2303 by Richard Kenner

(ASM_OUTPUT_INT): Test for whether the integer being output is also a

constant so &sym - &sym2 is not fixed up.

From-SVN: r10395
parent f0c24042
......@@ -96,7 +96,8 @@ do { \
&& in_section != in_dtors \
&& !recurse \
&& GET_CODE (VALUE) != CONST_INT \
&& GET_CODE (VALUE) != CONST_DOUBLE) \
&& GET_CODE (VALUE) != CONST_DOUBLE \
&& CONSTANT_P (VALUE)) \
{ \
static int labelno = 0; \
char buf[256], *p; \
......
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