File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ class DominanceInfo : public llvm::DominatorTreeBase<SILBasicBlock> {
41
41
42
42
// / Return true if the other dominator tree does not match this dominator
43
43
// / tree.
44
- inline bool errorOccuredOnComparison (const DominanceInfo &Other) const {
44
+ inline bool errorOccurredOnComparison (const DominanceInfo &Other) const {
45
45
const auto *R = getRootNode ();
46
46
const auto *OtherR = Other.getRootNode ();
47
47
@@ -131,7 +131,7 @@ class PostDominanceInfo : public llvm::DominatorTreeBase<SILBasicBlock> {
131
131
132
132
// / Return true if the other dominator tree does not match this dominator
133
133
// / tree.
134
- inline bool errorOccuredOnComparison (const PostDominanceInfo &Other) const {
134
+ inline bool errorOccurredOnComparison (const PostDominanceInfo &Other) const {
135
135
const auto *R = getRootNode ();
136
136
const auto *OtherR = Other.getRootNode ();
137
137
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ void DominanceInfo::verify() const {
55
55
DominanceInfo OtherDT (F);
56
56
57
57
// And compare.
58
- if (errorOccuredOnComparison (OtherDT)) {
58
+ if (errorOccurredOnComparison (OtherDT)) {
59
59
llvm::errs () << " DominatorTree is not up to date!\n Computed:\n " ;
60
60
print (llvm::errs ());
61
61
llvm::errs () << " \n Actual:\n " ;
You can’t perform that action at this time.
0 commit comments