[llvm] r267653 - Fix typo in comment; NFC
Sanjoy Das via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 26 18:44:31 PDT 2016
Author: sanjoy
Date: Tue Apr 26 20:44:31 2016
New Revision: 267653
URL: http://llvm.org/viewvc/llvm-project?rev=267653&view=rev
Log:
Fix typo in comment; NFC
Modified:
llvm/trunk/lib/Transforms/Scalar/EarlyCSE.cpp
Modified: llvm/trunk/lib/Transforms/Scalar/EarlyCSE.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Transforms/Scalar/EarlyCSE.cpp?rev=267653&r1=267652&r2=267653&view=diff
==============================================================================
--- llvm/trunk/lib/Transforms/Scalar/EarlyCSE.cpp (original)
+++ llvm/trunk/lib/Transforms/Scalar/EarlyCSE.cpp Tue Apr 26 20:44:31 2016
@@ -337,7 +337,7 @@ private:
// Contains all the needed information to create a stack for doing a depth
// first tranversal of the tree. This includes scopes for values, loads, and
// calls as well as the generation. There is a child iterator so that the
- // children do not need to be store spearately.
+ // children do not need to be store separately.
class StackNode {
public:
StackNode(ScopedHTType &AvailableValues, LoadHTType &AvailableLoads,
More information about the llvm-commits
mailing list