diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2016-09-07 01:49:41 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2016-09-07 01:49:41 +0000 |
commit | edd0a7023f32a94f211201156fdc8ddf16bd85b2 (patch) | |
tree | 90bba99ebc4e7095432bc06c0a8b524bfd5cb465 /llvm/lib/Transforms/Scalar/EarlyCSE.cpp | |
parent | 309a50aefb7840184487b429441d9cc448ab45fb (diff) | |
download | bcm5719-llvm-edd0a7023f32a94f211201156fdc8ddf16bd85b2.tar.gz bcm5719-llvm-edd0a7023f32a94f211201156fdc8ddf16bd85b2.zip |
Fix typo in comment, NFC
llvm-svn: 280774
Diffstat (limited to 'llvm/lib/Transforms/Scalar/EarlyCSE.cpp')
-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 a1ebd6dc2f3..cb02b2cbc7e 100644 --- a/llvm/lib/Transforms/Scalar/EarlyCSE.cpp +++ b/llvm/lib/Transforms/Scalar/EarlyCSE.cpp @@ -340,7 +340,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 + // first traversal 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 separately. class StackNode { |