We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Yet another up-for-grabs:
void foo(float* x) => *x = 0;
emits:
movi v16.16b, #0x00 str s16, [x1]
while could be just:
str wzr, [x1]
The issue is basically to port these changes #52298 to ARM64 or better - move them to lower.cpp and share between both x86 and arm.