[clang] d485fc4 - [clang][Interp][NFC] Fix a comment typo

Timm Bäder via cfe-commits cfe-commits at lists.llvm.org
Fri Sep 15 00:56:28 PDT 2023


Author: Timm Bäder
Date: 2023-09-15T09:55:52+02:00
New Revision: d485fc40f3e032694f0a91ca81fc52ef9a0765c0

URL: https://github.com/llvm/llvm-project/commit/d485fc40f3e032694f0a91ca81fc52ef9a0765c0
DIFF: https://github.com/llvm/llvm-project/commit/d485fc40f3e032694f0a91ca81fc52ef9a0765c0.diff

LOG: [clang][Interp][NFC] Fix a comment typo

Added: 
    

Modified: 
    clang/lib/AST/Interp/ByteCodeExprGen.cpp

Removed: 
    


################################################################################
diff  --git a/clang/lib/AST/Interp/ByteCodeExprGen.cpp b/clang/lib/AST/Interp/ByteCodeExprGen.cpp
index a2a70e8eb204483..3f0deb0a9f9c683 100644
--- a/clang/lib/AST/Interp/ByteCodeExprGen.cpp
+++ b/clang/lib/AST/Interp/ByteCodeExprGen.cpp
@@ -1525,7 +1525,7 @@ template <class Emitter> bool ByteCodeExprGen<Emitter>::visit(const Expr *E) {
   }
 
   //  Otherwise,we have a primitive return value, produce the value directly
-  //  and puish it on the stack.
+  //  and push it on the stack.
   OptionScope<Emitter> Scope(this, /*NewDiscardResult=*/false,
                              /*NewInitializing=*/false);
   return this->Visit(E);


        


More information about the cfe-commits mailing list