Author: Timm Baeder Date: 2026-08-09T13:13:52+02:00 New Revision: 37635388261c5d14ccfd36c18f932ed15728bb26
URL: https://github.com/llvm/llvm-project/commit/37635388261c5d14ccfd36c18f932ed15728bb26 DIFF: https://github.com/llvm/llvm-project/commit/37635388261c5d14ccfd36c18f932ed15728bb26.diff LOG: [clang][bytecode][NFC] Fix some comment typos (#215078) Added: Modified: clang/lib/AST/ByteCode/Compiler.cpp Removed: ################################################################################ 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
