Fix a typo 'iff' => 'if'
llvm-svn: 164766
diff --git a/clang/lib/CodeGen/CodeGenFunction.h b/clang/lib/CodeGen/CodeGenFunction.h
index fc930ec..a31a64e 100644
--- a/clang/lib/CodeGen/CodeGenFunction.h
+++ b/clang/lib/CodeGen/CodeGenFunction.h
@@ -583,7 +583,7 @@
JumpDest ReturnBlock;
/// ReturnValue - The temporary alloca to hold the return value. This is null
- /// iff the function has no return value.
+ /// if the function has no return value.
llvm::Value *ReturnValue;
/// AllocaInsertPoint - This is an instruction in the entry block before which
@@ -1655,7 +1655,7 @@
/// EmitAggregateCopy - Emit an aggrate copy.
///
- /// \param isVolatile - True iff either the source or the destination is
+ /// \param isVolatile - True if either the source or the destination is
/// volatile.
void EmitAggregateCopy(llvm::Value *DestPtr, llvm::Value *SrcPtr,
QualType EltTy, bool isVolatile=false,