[clang] 00d809c - [clang][Interp][NFC] Fix a comment typo

Timm Bäder via cfe-commits cfe-commits at lists.llvm.org
Tue Dec 12 06:48:22 PST 2023


Author: Timm Bäder
Date: 2023-12-12T15:47:49+01:00
New Revision: 00d809c37409470f4777ecc977c4e9473e6839d3

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

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

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/clang/lib/AST/Interp/Context.cpp b/clang/lib/AST/Interp/Context.cpp
index cb96e56fb5e1a..4fe6d1173f427 100644
--- a/clang/lib/AST/Interp/Context.cpp
+++ b/clang/lib/AST/Interp/Context.cpp
@@ -168,7 +168,7 @@ bool Context::Run(State &Parent, const Function *Func, APValue &Result) {
     }
 
     // State gets destroyed here, so the Stk.clear() below doesn't accidentally
-    // remove values the State's destructor might accedd.
+    // remove values the State's destructor might access.
   }
 
   Stk.clear();


        


More information about the cfe-commits mailing list