jdoerfert accepted this revision. jdoerfert added a comment. This revision is now accepted and ready to land.
Last nit, otherwise LG ================ Comment at: openmp/libomptarget/DeviceRTL/src/State.cpp:385 + if (!config::mayUseThreadStates()) + ASSERT(false && "Thread state modified while explicitly disabled!"); + ---------------- My bad, should have been ``` ASSERT(config::mayUseThreadStates() && "..."). ``` also below. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D120106/new/ https://reviews.llvm.org/D120106 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits