Skip to content

Commit 1dfbfa4

Browse files
committed
Fix some comments
Signed-off-by: Elyes HAOUAS <[email protected]>
1 parent 3f9fc2a commit 1dfbfa4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

asm/error.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ void reset_warnings(void)
165165

166166
/*
167167
* This is called when processing a -w or -W option, or a warning directive.
168-
* Returns on if if the action was successful.
168+
* Returns ok if the action was successful.
169169
*
170170
* Special pseudo-warnings:
171171
*

asm/parser.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ static void process_size_override(insn *result, operand *op)
141141
}
142142

143143
/*
144-
* Braced keywords are are parsed here. opmask and zeroing
144+
* Braced keywords are parsed here. opmask and zeroing
145145
* decorators can be placed in any order. e.g. zmm1 {k2}{z} or zmm2
146146
* {z}{k3} decorator(s) are placed at the end of an operand.
147147
*/

asm/pragma.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ void process_pragma(char *str)
276276

277277
/*
278278
* Search the global pragma namespaces. This is done
279-
* as a loop rather than than letting search_pragma_list()
279+
* as a loop rather than letting search_pragma_list()
280280
* just run, because we don't want to keep searching if
281281
* we have a facility match, thus we want to call
282282
* search_pragma_list() individually for each namespace.

asm/preproc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5903,7 +5903,7 @@ static Token *expand_smacro_noreset(Token *org_tline)
59035903
Token **tail = &tline;
59045904

59055905
/*
5906-
* We hold warnings/errors until we are done this this loop. It is
5906+
* We hold warnings/errors until we are done in this loop. It is
59075907
* possible for nuisance warnings to appear that disappear on later
59085908
* passes.
59095909
*/

output/outelf.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2824,7 +2824,7 @@ static void stabs_generate(void)
28242824
if (ptr) {
28252825
/*
28262826
* this is the first stab, its strx points to the filename of the
2827-
* the source-file, the n_desc field should be set to the number
2827+
* source-file, the n_desc field should be set to the number
28282828
* of remaining stabs
28292829
*/
28302830
WRITE_STAB(sptr, fileidx[0], 0, 0, 0, stabstrlen);

0 commit comments

Comments
 (0)