nickdesaulniers added inline comments.

================
Comment at: cfe/trunk/lib/Driver/Driver.cpp:81-85
+#include <sysexits.h>
 #include <utility>
 #if LLVM_ON_UNIX
 #include <unistd.h> // getpid
 #endif
----------------
@rnk || @majnemer thoughts on making this:

```
#if LLVM_ON_UNIX
​#include <unistd.h> // getpid
#include <sysexits.h> // EX_IOERR
#else
#define EX_IOERR 74
​#endif
```

vs also guarding the check I added on L1409 with `#if LLVM_ON_UNIX`?


Repository:
  rL LLVM

https://reviews.llvm.org/D53001



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

Reply via email to