You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clang-19 crashed: fatal error: error in backend: Stack realignment in presence of dynamic allocas is not supported withthis calling convention.Β #95928
$cat mutant.c
void a();
__attribute__((preserve_none)) int b() {
int c;
a(&c);
}
$clang-19 -fsanitize=address mutant.c
mutant.c:4:4: warning: passing arguments to 'a' without a prototype is deprecated in all versions of C and is not supported in C23 [-Wdeprecated-non-prototype]
4 | a(&c);
| ^
mutant.c:5:1: warning: non-void function does not return a value [-Wreturn-type]
5 | }
| ^
fatal error: error in backend: Stack realignment in presence of dynamic allocas is not supported withthis calling convention.
clang-19: error: clang frontend command failed with exit code 70 (use -v to see invocation)
Ubuntu clang version 19.0.0 (++20240301064251+dd426fa5f931-1~exp1~20240301184412.1845)
Target: x86_64-pc-linux-gnu
Thread model: posix
InstalledDir: /usr/lib/llvm-19/bin
clang-19: note: diagnostic msg:
********************
PLEASE ATTACH THE FOLLOWING FILES TO THE BUG REPORT:
Preprocessed source(s) and associated run script(s) are located at:
clang-19: note: diagnostic msg: /tmp/mutant-e3f4cd.c
clang-19: note: diagnostic msg: /tmp/mutant-e3f4cd.sh
clang-19: note: diagnostic msg:
********************