================
@@ -41,6 +41,8 @@
 
 using namespace llvm;
 
+#if defined(_WIN32) || !defined(__wasi__)
----------------
jyknight wrote:

This conditional is weird; there's no case where `__wasi__` is defined at the 
same time as `_WIN32`, so you just mean `#if !defined(__wasi__)`.

Also you've removed the entire type's implementation, but not the declaration 
in the header, which is broken.

https://github.com/llvm/llvm-project/pull/92677
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to