-
Notifications
You must be signed in to change notification settings - Fork 14.5k
[CIR][NFC] Fix typo in assertion message (Must) #148704
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@llvm/pr-subscribers-clangir @llvm/pr-subscribers-clang Author: Bogdan Vetrenko (bv2k4) ChangesFull diff: https://github.com/llvm/llvm-project/pull/148704.diff 1 Files Affected:
diff --git a/clang/lib/CIR/CodeGen/CIRGenClass.cpp b/clang/lib/CIR/CodeGen/CIRGenClass.cpp
index cc4a615dc392e..8667bb60d114e 100644
--- a/clang/lib/CIR/CodeGen/CIRGenClass.cpp
+++ b/clang/lib/CIR/CodeGen/CIRGenClass.cpp
@@ -75,7 +75,7 @@ static void emitMemberInitializer(CIRGenFunction &cgf,
const CXXConstructorDecl *constructor,
FunctionArgList &args) {
assert(memberInit->isAnyMemberInitializer() &&
- "Mush have member initializer!");
+ "Must have member initializer!");
assert(memberInit->getInit() && "Must have initializer!");
assert(!cir::MissingFeatures::generateDebugInfo());
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
LLVM Buildbot has detected a new failure on builder Full details are available at: https://lab.llvm.org/buildbot/#/builders/162/builds/26881 Here is the relevant piece of the build log for the reference
|
No description provided.