diff options
author | Sylvestre Ledru <sylvestre@debian.org> | 2013-05-14 23:36:24 +0000 |
---|---|---|
committer | Sylvestre Ledru <sylvestre@debian.org> | 2013-05-14 23:36:24 +0000 |
commit | 149e281aa82c0e6c17cf15308290499e347a6cee (patch) | |
tree | 35bd65f7f47d437b469bb001dc6353fc7c6ad9e9 /llvm/lib | |
parent | 773df4a11fab7484640ec4f42e27123c0f1ed0d6 (diff) | |
download | bcm5719-llvm-149e281aa82c0e6c17cf15308290499e347a6cee.tar.gz bcm5719-llvm-149e281aa82c0e6c17cf15308290499e347a6cee.zip |
Fix two typo
llvm-svn: 181848
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/MC/MCParser/AsmParser.cpp | 2 | ||||
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/MC/MCParser/AsmParser.cpp b/llvm/lib/MC/MCParser/AsmParser.cpp index edefdb4c364..f7c71e97e36 100644 --- a/llvm/lib/MC/MCParser/AsmParser.cpp +++ b/llvm/lib/MC/MCParser/AsmParser.cpp @@ -545,7 +545,7 @@ bool AsmParser::EnterIncludeFile(const std::string &Filename) { return false; } -/// Process the specified .incbin file by seaching for it in the include paths +/// Process the specified .incbin file by searching for it in the include paths /// then just emitting the byte contents of the file to the streamer. This /// returns true on failure. bool AsmParser::ProcessIncbinFile(const std::string &Filename) { diff --git a/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp b/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp index 87d56214a36..51ca29bc071 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineMulDivRem.cpp @@ -846,7 +846,7 @@ Instruction *InstCombiner::visitSDiv(BinaryOperator &I) { /// FP value and: /// 1) 1/C is exact, or /// 2) reciprocal is allowed. -/// If the convertion was successful, the simplified expression "X * 1/C" is +/// If the conversion was successful, the simplified expression "X * 1/C" is /// returned; otherwise, NULL is returned. /// static Instruction *CvtFDivConstToReciprocal(Value *Dividend, |