aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Parse/ParseDecl.cpp
diff options
context:
space:
mode:
authorerichkeane <ekeane@nvidia.com>2023-11-17 07:28:33 -0800
committererichkeane <ekeane@nvidia.com>2023-11-17 07:28:33 -0800
commit7d1a9e81b0b59d020a52c789d659acb5ee5fdc41 (patch)
tree6596018c74a9900ec7e86220a71ab36910b59fc1 /clang/lib/Parse/ParseDecl.cpp
parent227607190e68c303920bcbd148043dbb1aa5d3b1 (diff)
downloadllvm-7d1a9e81b0b59d020a52c789d659acb5ee5fdc41.zip
llvm-7d1a9e81b0b59d020a52c789d659acb5ee5fdc41.tar.gz
llvm-7d1a9e81b0b59d020a52c789d659acb5ee5fdc41.tar.bz2
[OpenACC] Rename ParseOpenACCDirective to ParseOpenACCDirectiveDecl
The former name is more useful as a callee of the function in a future patch, so as suggested in that review, move the rename here.
Diffstat (limited to 'clang/lib/Parse/ParseDecl.cpp')
-rw-r--r--clang/lib/Parse/ParseDecl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Parse/ParseDecl.cpp b/clang/lib/Parse/ParseDecl.cpp
index d86f477..8cb5b09 100644
--- a/clang/lib/Parse/ParseDecl.cpp
+++ b/clang/lib/Parse/ParseDecl.cpp
@@ -4735,7 +4735,7 @@ void Parser::ParseStructUnionBody(SourceLocation RecordLoc,
}
if (Tok.is(tok::annot_pragma_openacc)) {
- ParseOpenACCDirective();
+ ParseOpenACCDirectiveDecl();
continue;
}