https://github.com/tbaederr created https://github.com/llvm/llvm-project/pull/215078
None >From bb4bf5e0010708a0f1aa1b2c90725ca76a9b2ed4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timm=20B=C3=A4der?= <[email protected]> Date: Sun, 9 Aug 2026 10:39:44 +0200 Subject: [PATCH] [clang][bytecode][NFC] Fix some comment typos --- clang/lib/AST/ByteCode/Compiler.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/clang/lib/AST/ByteCode/Compiler.cpp b/clang/lib/AST/ByteCode/Compiler.cpp index 01cfdeb3ef0fb..316b2a4f092f9 100644 --- a/clang/lib/AST/ByteCode/Compiler.cpp +++ b/clang/lib/AST/ByteCode/Compiler.cpp @@ -37,8 +37,8 @@ static std::optional<bool> getBoolValue(const Expr *E) { return std::nullopt; } -/// Check if \c E has side-effects. This is used to avoid some tempoarary -/// variables and is supposed to be a quick check, not exhausite. That's why +/// Check if \c E has side-effects. This is used to avoid some temporary +/// variables and is supposed to be a quick check, not exhaustive. That's why /// we're not using Expr::HasSideEffects(). static bool isSideEffectFree(const Expr *E) { if (isa<IntegerLiteral, FloatingLiteral, CharacterLiteral, _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
