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
$ cc main.c -m32 -c -O1
In file included from /tmp/mytemp.ADnlpp/main.c:2:
/usr/include/fortify/stdio.h:150:47: error: 'diagnose_as_builtin' attribute parameter types do not match: parameter 2 of function '__orig_vsnprintf' has type 'size_t' (aka 'unsigned long'), but parameter 2 of function '__builtin_vsnprintf' has type 'unsigned int'
150 | __diagnose_as_builtin(__builtin_vsnprintf, 1, 2, 3, 4)
| ^
1 error generated.
removing either optimisation (-O0 or no arg) or -m32 doesn't reproduce
trying to reproduce normally with
-fno-builtin
or similar doesn't repro, so there is probably something funny in the compiler-rt buildThe text was updated successfully, but these errors were encountered: