aaron.ballman added a comment.

FWIW, it looks like precommit CI found issues in the newly added test which 
should be addressed.



================
Comment at: clang/test/CodeGen/no-builtin-2.c:3
+
+#include <stddef.h>
+
----------------
You shouldn't include system headers -- that will pull from whatever is 
installed on the test system. If you included this for `size_t`, you can do 
something like: `typedef __typeof_(sizeof(0)) size_t;` to work around it.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D124701/new/

https://reviews.llvm.org/D124701

_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to