[libc-commits] [flang] [llvm] [clang] [lld] [libcxx] [lldb] [clang-tools-extra] [libc] [OpenACC] Initial commits to support OpenACC (PR #70234)
Erich Keane via libc-commits
libc-commits at lists.llvm.org
Mon Nov 13 08:24:46 PST 2023
================
@@ -229,6 +230,9 @@ class Parser : public CodeCompletionHandler {
/// Parsing OpenMP directive mode.
bool OpenMPDirectiveParsing = false;
+ /// Parsing OpenACC directive mode.
+ bool OpenACCDirectiveParsing = false;
----------------
erichkeane wrote:
Ah, I see. As it is likely to be used within another patch or two, I see value in leaving it (if only to not have to edit hte Parser.cpp lines again), but can remove it if you insist.
https://github.com/llvm/llvm-project/pull/70234
More information about the libc-commits
mailing list