[llvm] 27ad4b0 - [SandboxVec][DAG][NFC] Fix typo

Vasileios Porpodas via llvm-commits llvm-commits at lists.llvm.org
Sat Sep 21 09:12:25 PDT 2024


Author: Vasileios Porpodas
Date: 2024-09-21T09:12:07-07:00
New Revision: 27ad4b03e7622e397dca8185bf783cd3006b95c5

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

LOG: [SandboxVec][DAG][NFC] Fix typo

Added: 
    

Modified: 
    llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/DependencyGraph.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/DependencyGraph.h b/llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/DependencyGraph.h
index 75b2073d0557c5..0120d9cf51fe9f 100644
--- a/llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/DependencyGraph.h
+++ b/llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer/DependencyGraph.h
@@ -36,7 +36,7 @@ class DGNode {
   /// Memory predecessors.
   DenseSet<DGNode *> MemPreds;
   /// This is true if this may read/write memory, or if it has some ordering
-  /// constraings, like with stacksave/stackrestore and alloca/inalloca.
+  /// constraints, like with stacksave/stackrestore and alloca/inalloca.
   bool IsMem;
 
 public:
@@ -54,7 +54,7 @@ class DGNode {
   /// \Returns true if there is a memory dependency N->this.
   bool hasMemPred(DGNode *N) const { return MemPreds.count(N); }
   /// \Returns true if this may read/write memory, or if it has some ordering
-  /// constraings, like with stacksave/stackrestore and alloca/inalloca.
+  /// constraints, like with stacksave/stackrestore and alloca/inalloca.
   bool isMem() const { return IsMem; }
 #ifndef NDEBUG
   void print(raw_ostream &OS, bool PrintDeps = true) const;


        


More information about the llvm-commits mailing list