2006-09-09 Eric Christopher <echristo@apple.com>
PR target/28995
* config/darwin.c (machopic_select_rtx_section): Add TARGET_64BIT
for literal16.
From-SVN: r116810
+2006-09-09 Eric Christopher <echristo@apple.com>
+
+ PR target/28995
+ * config/darwin.c (machopic_select_rtx_section): Add TARGET_64BIT
+ for literal16.
+
2006-09-09 Roger Sayle <roger@eyesopen.com>
Nicolas Setton <setton@adacore.com>
&& (GET_CODE (x) == CONST_INT
|| GET_CODE (x) == CONST_DOUBLE))
return darwin_sections[literal4_section];
- else if (GET_MODE_SIZE (mode) == 16
+ else if (TARGET_64BIT
+ && GET_MODE_SIZE (mode) == 16
&& (GET_CODE (x) == CONST_INT
|| GET_CODE (x) == CONST_DOUBLE))
return darwin_sections[literal16_section];