diff options
author | Owen Anderson <resistor@mac.com> | 2009-10-04 17:52:13 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2009-10-04 17:52:13 +0000 |
commit | 11a021db1a24a060fbd14a383a0da3cb7ec439eb (patch) | |
tree | f39fc1f1ab0bfd43cfb5df9c5c56d98a0233c310 | |
parent | de650865a291a022b69a1b2b9e6e554073915e5b (diff) | |
download | external_llvm-11a021db1a24a060fbd14a383a0da3cb7ec439eb.tar.gz external_llvm-11a021db1a24a060fbd14a383a0da3cb7ec439eb.tar.bz2 external_llvm-11a021db1a24a060fbd14a383a0da3cb7ec439eb.zip |
Fix a typo in the comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83283 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Transforms/Utils/SSI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/SSI.cpp b/lib/Transforms/Utils/SSI.cpp index 305f60e7d7..ef49d9624b 100644 --- a/lib/Transforms/Utils/SSI.cpp +++ b/lib/Transforms/Utils/SSI.cpp @@ -49,7 +49,7 @@ bool SSI::runOnFunction(Function &F) { /// This methods creates the SSI representation for the list of values /// received. It will only create SSI representation if a value is used -/// in a to decide a branch. Repeated values are created only once. +/// to decide a branch. Repeated values are created only once. /// void SSI::createSSI(SmallVectorImpl<Instruction *> &value) { init(value); |