diff options
author | Eric Christopher <echristo@gmail.com> | 2018-01-09 23:25:38 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2018-01-09 23:25:38 +0000 |
commit | d72f78e7c8d6dbef66cdbee0292237c68d780160 (patch) | |
tree | e996bbdf30a5c27c83d1578f36a35f2e81666b07 /llvm/lib/CodeGen/CodeGenPrepare.cpp | |
parent | 99482fda959d268d5b9fbf4cdfdd1b3e9132ec33 (diff) | |
download | bcm5719-llvm-d72f78e7c8d6dbef66cdbee0292237c68d780160.tar.gz bcm5719-llvm-d72f78e7c8d6dbef66cdbee0292237c68d780160.zip |
Tidy some grammar in some comments
llvm-svn: 322133
Diffstat (limited to 'llvm/lib/CodeGen/CodeGenPrepare.cpp')
-rw-r--r-- | llvm/lib/CodeGen/CodeGenPrepare.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/CodeGenPrepare.cpp b/llvm/lib/CodeGen/CodeGenPrepare.cpp index 26ca8d4ee88..af69f8467df 100644 --- a/llvm/lib/CodeGen/CodeGenPrepare.cpp +++ b/llvm/lib/CodeGen/CodeGenPrepare.cpp @@ -2809,11 +2809,11 @@ private: // <p, BB3> -> ? // The function tries to find or build phi [b1, BB1], [b2, BB2] in BB3 Value *findCommon(FoldAddrToValueMapping &Map) { - // Tracks of new created Phi nodes. + // Tracks newly created Phi nodes. SmallPtrSet<PHINode *, 32> NewPhiNodes; - // Tracks of new created Select nodes. + // Tracks newly created Select nodes. SmallPtrSet<SelectInst *, 32> NewSelectNodes; - // Tracks the simplification of new created phi nodes. The reason we use + // Tracks the simplification of newly created phi nodes. The reason we use // this mapping is because we will add new created Phi nodes in AddrToBase. // Simplification of Phi nodes is recursive, so some Phi node may // be simplified after we added it to AddrToBase. |