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.
1 parent f3de8b5 commit 3c18df6Copy full SHA for 3c18df6
tests/tcctest.c
@@ -1173,6 +1173,10 @@ void char_short_test()
1173
the presence of undefined behaviour (like __csf is). */
1174
var1 = csf(unsigned char,0x89898989);
1175
var4 = csf(signed char,0xabababab);
1176
+#ifdef __clang__
1177
+ /* on macos 15 arm64 this prints -1987475063 instead of 137 */
1178
+ var1 &= 0xff;
1179
+#endif
1180
printf("promote char/short funcret %d "LONG_LONG_FORMAT"\n", var1, var4);
1181
printf("promote char/short fumcret VA %d %d %d %d\n",
1182
csf(unsigned short,0xcdcdcdcd),
0 commit comments