summaryrefslogtreecommitdiffstats
path: root/clang/lib/Parse/ParseObjc.cpp
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2013-04-29 15:35:35 +0000
committerFariborz Jahanian <fjahanian@apple.com>2013-04-29 15:35:35 +0000
commitd56a262200aa36ba118a305a5ecc1a2ec5986ca1 (patch)
tree012ed898fb73cca03d94488c6922ac81dd41d8b9 /clang/lib/Parse/ParseObjc.cpp
parent4d4a48d91f237607cdbf90e75bcd9a4f44f5a380 (diff)
downloadbcm5719-llvm-d56a262200aa36ba118a305a5ecc1a2ec5986ca1.tar.gz
bcm5719-llvm-d56a262200aa36ba118a305a5ecc1a2ec5986ca1.zip
Fix a typo in a parse assert.
Patch by Alex Denisov. llvm-svn: 180712
Diffstat (limited to 'clang/lib/Parse/ParseObjc.cpp')
-rw-r--r--clang/lib/Parse/ParseObjc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/Parse/ParseObjc.cpp b/clang/lib/Parse/ParseObjc.cpp
index aa9c05ec7fc..4a572f19932 100644
--- a/clang/lib/Parse/ParseObjc.cpp
+++ b/clang/lib/Parse/ParseObjc.cpp
@@ -1682,7 +1682,7 @@ Decl *Parser::ParseObjCAtAliasDeclaration(SourceLocation atLoc) {
///
Decl *Parser::ParseObjCPropertySynthesize(SourceLocation atLoc) {
assert(Tok.isObjCAtKeyword(tok::objc_synthesize) &&
- "ParseObjCPropertyDynamic(): Expected '@synthesize'");
+ "ParseObjCPropertySynthesize(): Expected '@synthesize'");
ConsumeToken(); // consume synthesize
while (true) {
OpenPOWER on IntegriCloud