forked from OSchip/llvm-project
Very minor typo. NFC
Typo `we we're` => `we were` in the pass EarlyCSE Patch by liangdzou (Liang ZOU) Differential Revision: https://reviews.llvm.org/D59241 llvm-svn: 355895
This commit is contained in:
parent
5b1027a908
commit
5b1e1c0537
|
@ -1102,7 +1102,7 @@ bool EarlyCSE::processNode(DomTreeNode *Node) {
|
||||||
// At the moment, we don't remove ordered stores, but do remove
|
// At the moment, we don't remove ordered stores, but do remove
|
||||||
// unordered atomic stores. There's no special requirement (for
|
// unordered atomic stores. There's no special requirement (for
|
||||||
// unordered atomics) about removing atomic stores only in favor of
|
// unordered atomics) about removing atomic stores only in favor of
|
||||||
// other atomic stores since we we're going to execute the non-atomic
|
// other atomic stores since we were going to execute the non-atomic
|
||||||
// one anyway and the atomic one might never have become visible.
|
// one anyway and the atomic one might never have become visible.
|
||||||
if (LastStore) {
|
if (LastStore) {
|
||||||
ParseMemoryInst LastStoreMemInst(LastStore, TTI);
|
ParseMemoryInst LastStoreMemInst(LastStore, TTI);
|
||||||
|
|
Loading…
Reference in New Issue