aboutsummaryrefslogtreecommitdiff
path: root/clang/lib/CodeGen/CGExprAgg.cpp
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2024-05-08 08:03:22 -0400
committerAaron Ballman <aaron@aaronballman.com>2024-05-08 08:03:22 -0400
commit943617d12ccbd3cf317f0bbec03d9efc700f3953 (patch)
treeaa4ea2a7d6eaef156d243d4228e63794d015d10d /clang/lib/CodeGen/CGExprAgg.cpp
parent6fa09616da7436f85eb7e1e1fd74e1ac078ddb0d (diff)
downloadllvm-943617d12ccbd3cf317f0bbec03d9efc700f3953.zip
llvm-943617d12ccbd3cf317f0bbec03d9efc700f3953.tar.gz
llvm-943617d12ccbd3cf317f0bbec03d9efc700f3953.tar.bz2
Typo fix; NFC
Diffstat (limited to 'clang/lib/CodeGen/CGExprAgg.cpp')
-rw-r--r--clang/lib/CodeGen/CGExprAgg.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGExprAgg.cpp b/clang/lib/CodeGen/CGExprAgg.cpp
index cd9936a..6172eb9 100644
--- a/clang/lib/CodeGen/CGExprAgg.cpp
+++ b/clang/lib/CodeGen/CGExprAgg.cpp
@@ -1736,7 +1736,7 @@ void AggExprEmitter::VisitCXXParenListOrInitListExpr(
for (const auto *Field : record->fields())
assert(
(Field->isUnnamedBitField() || Field->isAnonymousStructOrUnion()) &&
- "Only unnamed bitfields or ananymous class allowed");
+ "Only unnamed bitfields or anonymous class allowed");
#endif
return;
}