aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/Parse/ParseOpenMP.cpp
diff options
context:
space:
mode:
authorJonathan Roelofs <jonathan@codesourcery.com>2017-03-14 17:29:33 +0000
committerJonathan Roelofs <jonathan@codesourcery.com>2017-03-14 17:29:33 +0000
commitce1db6df26e015089f495d387f292ed39a9ceea0 (patch)
tree95730fbd80883afc839016ee6cc620bdbfc35e01 /clang/lib/Parse/ParseOpenMP.cpp
parenta0a5682d00ec666c9cd3fef10b2d1b8645631c07 (diff)
downloadllvm-ce1db6df26e015089f495d387f292ed39a9ceea0.zip
llvm-ce1db6df26e015089f495d387f292ed39a9ceea0.tar.gz
llvm-ce1db6df26e015089f495d387f292ed39a9ceea0.tar.bz2
Fix misspelled enum
https://reviews.llvm.org/D30945 llvm-svn: 297756
Diffstat (limited to 'clang/lib/Parse/ParseOpenMP.cpp')
-rw-r--r--clang/lib/Parse/ParseOpenMP.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Parse/ParseOpenMP.cpp b/clang/lib/Parse/ParseOpenMP.cpp
index 574ed6e..8138a0a 100644
--- a/clang/lib/Parse/ParseOpenMP.cpp
+++ b/clang/lib/Parse/ParseOpenMP.cpp
@@ -806,7 +806,7 @@ Parser::DeclGroupPtrTy Parser::ParseOpenMPDeclarativeDirectiveWithExtDecl(
/// annot_pragma_openmp_end
///
StmtResult Parser::ParseOpenMPDeclarativeOrExecutableDirective(
- AllowedContsructsKind Allowed) {
+ AllowedConstructsKind Allowed) {
assert(Tok.is(tok::annot_pragma_openmp) && "Not an OpenMP directive!");
ParenBraceBracketBalancer BalancerRAIIObj(*this);
SmallVector<OMPClause *, 5> Clauses;