<div dir="ltr"><div><div><div>Hello,<br></div>some time ago I have asked this question, but -fno-builtin solution doesn't help.<br></div>Is it possible to completely avoid llvm intrinsics functions?<br>int main() {<br>Â Â Â // produce llvm.memcpy's<br>Â Â Â char carray[LEN] = {1, 3, 5, 3, 2, 5, 3, 5, 3, 5, -2, 100};<br>Â Â Â int a[LEN];<br>Â Â Â memset(&a, 0, LEN);<br><br>Â Â Â empty_byte(carray);<br><br>Â Â Â return 0;<br>}<br><br></div>this examples always with any , with no flags produces llvm.memset.<br></div>