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