Commit 12b8cb2e by Jan Hubicka Committed by Jan Hubicka

re PR bootstrap/83062 (Bootstrap failure: libsanitizer/tsan/tsan_rtl.h:713:44:…

re PR bootstrap/83062 (Bootstrap failure: libsanitizer/tsan/tsan_rtl.h:713:44: error: inlining failed in call to always_inline ‘void __tsan::MemoryRead(__tsan::ThreadState*, __sanitizer::uptr, __sanitizer: :uptr, int)’: caller is not optimized)

	PR bootstrap/83062
	* ipa-inline.c (can_inline_edge_p): Fix typo in previous patch.

From-SVN: r254946
parent 19a30b71
2017-11-20 Jan Hubicka <hubicka@ucw.cz>
PR bootstrap/83062
* ipa-inline.c (can_inline_edge_p): Fix typo in previous patch.
2017-11-20 Aldy Hernandez <aldyh@redhat.com>
* vec.h (debug_helper): New function.
......@@ -325,7 +325,7 @@ can_inline_edge_p (struct cgraph_edge *e, bool report,
inlinable = false;
}
if (!early && (!opt_for_fn (callee->decl, optimize)
|| opt_for_fn (caller->decl, optimize)))
|| !opt_for_fn (caller->decl, optimize)))
{
e->inline_failed = CIF_FUNCTION_NOT_OPTIMIZED;
inlinable = false;
......
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