File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
llvm/include/llvm/Transforms/Vectorize/SandboxVectorizer Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ class DGNode {
36
36
// / Memory predecessors.
37
37
DenseSet<DGNode *> MemPreds;
38
38
// / This is true if this may read/write memory, or if it has some ordering
39
- // / constraings , like with stacksave/stackrestore and alloca/inalloca.
39
+ // / constraints , like with stacksave/stackrestore and alloca/inalloca.
40
40
bool IsMem;
41
41
42
42
public:
@@ -54,7 +54,7 @@ class DGNode {
54
54
// / \Returns true if there is a memory dependency N->this.
55
55
bool hasMemPred (DGNode *N) const { return MemPreds.count (N); }
56
56
// / \Returns true if this may read/write memory, or if it has some ordering
57
- // / constraings , like with stacksave/stackrestore and alloca/inalloca.
57
+ // / constraints , like with stacksave/stackrestore and alloca/inalloca.
58
58
bool isMem () const { return IsMem; }
59
59
#ifndef NDEBUG
60
60
void print (raw_ostream &OS, bool PrintDeps = true ) const ;
You can’t perform that action at this time.
0 commit comments