diff --git a/lib/Target/PowerPC/PPCFastISel.cpp b/lib/Target/PowerPC/PPCFastISel.cpp index e62d4e16773..91646ad5a5f 100644 --- a/lib/Target/PowerPC/PPCFastISel.cpp +++ b/lib/Target/PowerPC/PPCFastISel.cpp @@ -1547,7 +1547,7 @@ bool PPCFastISel::SelectRet(const Instruction *I) { // Special case for returning a constant integer of any size. // Materialize the constant as an i64 and copy it to the return - // register. This avoids an unnecessary extend or truncate. + // register. This avoids an unnecessary extend or truncate. if (isa(*RV)) { const Constant *C = cast(RV); unsigned SrcReg = PPCMaterializeInt(C, MVT::i64);