* postreload.c (reload_cse_simplify): Check for NO_FUNCTION_CSE
definition instead of using it directly.
From-SVN: r244376
+2016-01-12 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
+
+ * postreload.c (reload_cse_simplify): Check for NO_FUNCTION_CSE
+ definition instead of using it directly.
+
2017-01-12 Maxim Ostapenko <m.ostapenko@samsung.com>
Backport from mainline
/* If NO_FUNCTION_CSE has been set by the target, then we should not try
to cse function calls. */
- if (NO_FUNCTION_CSE && CALL_P (insn))
+#ifdef NO_FUNCTION_CSE
+ if (CALL_P (insn))
return false;
+#endif
if (GET_CODE (body) == SET)
{