diff options
author | Diana Picus <diana.picus@linaro.org> | 2016-08-04 08:25:08 +0000 |
---|---|---|
committer | Diana Picus <diana.picus@linaro.org> | 2016-08-04 08:25:08 +0000 |
commit | ddddbc2440f46393d1073809111e59fa863d57a3 (patch) | |
tree | a775dc4e71ca059aee4e097d736f25a887421acb /llvm/lib/CodeGen/SelectionDAG | |
parent | c7611fc567eb92e9ad571eab05c606a903b0de68 (diff) | |
download | bcm5719-llvm-ddddbc2440f46393d1073809111e59fa863d57a3.tar.gz bcm5719-llvm-ddddbc2440f46393d1073809111e59fa863d57a3.zip |
Typo fix in comment. NFC
llvm-svn: 277704
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 6a74430a600..df928451fc5 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -11546,7 +11546,7 @@ bool DAGCombiner::MergeConsecutiveStores(StoreSDNode* St) { if (StoreNodes.size() < 2) return false; - // only do dep endence check in AA case + // only do dependence check in AA case bool UseAA = CombinerAA.getNumOccurrences() > 0 ? CombinerAA : DAG.getSubtarget().useAA(); if (UseAA && !checkMergeStoreCandidatesForDependencies(StoreNodes)) |