@@ -119,16 +119,16 @@ class SFrameEmitterImpl {
119119 return true ;
120120 }
121121 Streamer.getContext ().reportWarning (
122- I.getLoc (), " Canonical Frame Address not in stack- or frame-pointer. "
123- " Omitting SFrame unwind info for this function. " );
122+ I.getLoc (), " canonical Frame Address not in stack- or frame-pointer. "
123+ " Omitting SFrame unwind info for this function" );
124124 return false ;
125125 }
126126
127127 bool setCFAOffset (SFrameFRE &FRE, const SMLoc &Loc, size_t Offset) {
128128 if (!FRE.CFARegSet ) {
129129 Streamer.getContext ().reportWarning (
130- Loc, " Adjusting CFA offset without a base register. "
131- " Omitting SFrame unwind info for this function. " );
130+ Loc, " adjusting CFA offset without a base register. "
131+ " Omitting SFrame unwind info for this function" );
132132 return false ;
133133 }
134134 FRE.CFAOffset = Offset;
@@ -233,9 +233,9 @@ class SFrameEmitterImpl {
233233 // hand-written assembly.
234234 if (DF.RAReg != RAReg) {
235235 Streamer.getContext ().reportWarning (
236- SMLoc (), " Non -default RA register in .cfi_return_column " +
236+ SMLoc (), " non -default RA register in .cfi_return_column " +
237237 Twine (DF.RAReg ) +
238- " . Omitting SFrame unwind info for this function. " );
238+ " . Omitting SFrame unwind info for this function" );
239239 Valid = false ;
240240 }
241241 MCSymbol *LastLabel = DF.Begin ;
0 commit comments