diff options
author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2016-04-27 01:44:31 +0000 |
---|---|---|
committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2016-04-27 01:44:31 +0000 |
commit | 5253a089baf9d75cfbf23850dbdf7f0e5234428b (patch) | |
tree | a02cad76e1f50170e1cc1cdf631efebfe4176a6e | |
parent | 19a2ee591a1249d1d4b9657bf5f2089ec2ad2fa1 (diff) | |
download | bcm5719-llvm-5253a089baf9d75cfbf23850dbdf7f0e5234428b.tar.gz bcm5719-llvm-5253a089baf9d75cfbf23850dbdf7f0e5234428b.zip |
Fix typo in comment; NFC
llvm-svn: 267653
-rw-r--r-- | llvm/lib/Transforms/Scalar/EarlyCSE.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Scalar/EarlyCSE.cpp b/llvm/lib/Transforms/Scalar/EarlyCSE.cpp index f919f30af0f..e820f2d422d 100644 --- a/llvm/lib/Transforms/Scalar/EarlyCSE.cpp +++ b/llvm/lib/Transforms/Scalar/EarlyCSE.cpp @@ -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, |