Fix two typo
authorSylvestre Ledru <sylvestre@debian.org>
Tue, 14 May 2013 23:36:24 +0000 (23:36 +0000)
committerSylvestre Ledru <sylvestre@debian.org>
Tue, 14 May 2013 23:36:24 +0000 (23:36 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181848 91177308-0d34-0410-b5e6-96231b3b80d8

lib/MC/MCParser/AsmParser.cpp
lib/Transforms/InstCombine/InstCombineMulDivRem.cpp

index edefdb4c364358a39ac61d287fc8d719beb5a25d..f7c71e97e3639619f8e67797c1cf9db25aaf527c 100644 (file)
@@ -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) {
index 87d56214a365d5a3bfd1f80b6e39de432fcd4d44..51ca29bc071f9d15bae346e3ef1ddc2f0ede2ece 100644 (file)
@@ -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,