#![no_builtins]interferes with LTO, so stop using it. For memcpy etc., we'll just be careful to always call compiler_builtins instead of using plain code that could be pattern-matched.
If we ever want to stop using compiler_builtins, we can use black_box to prevent compilers from pattern-matching.
#![no_builtins]
interferes with LTO, so stop using it. Formemcpy
etc., we'll just be careful to always callcompiler_builtins
instead of using plain code that could be pattern-matched.If we ever want to stop using
compiler_builtins
, we can useblack_box
to prevent compilers from pattern-matching.