jhuber6 marked an inline comment as done.
jhuber6 added a comment.

Thanks for the review.



================
Comment at: clang/lib/Driver/Driver.cpp:5420
+        /*CreatePrefixForHost=*/isa<OffloadPackagerJobAction>(A) ||
+            (!!A->getOffloadingHostActiveKinds() && !AtTopLevel));
     if (isa<OffloadWrapperJobAction>(JA)) {
----------------
tra wrote:
> `!!` assumes specific values for the mask returned by 
> getOffloadingHostActiveKinds().
> 
> `(A->getOffloadingHostActiveKinds() != OFK_None && !AtTopLevel)` would be a 
> bit easier to understand, IMO.
> Maybe even `!(A->getOffloadingHostActiveKinds() == OFK_None || AtTopLevel)`.
> 
That was confusing me as well, might as well change it while I'm here.


Repository:
  rG LLVM Github Monorepo

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

https://reviews.llvm.org/D127673

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

Reply via email to