Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix some comments #22

Merged
merged 1 commit into from
Nov 7, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion asm/error.c
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ void reset_warnings(void)

/*
* This is called when processing a -w or -W option, or a warning directive.
* Returns on if if the action was successful.
* Returns ok if the action was successful.
*
* Special pseudo-warnings:
*
Expand Down
2 changes: 1 addition & 1 deletion asm/parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ static void process_size_override(insn *result, operand *op)
}

/*
* Braced keywords are are parsed here. opmask and zeroing
* Braced keywords are parsed here. opmask and zeroing
* decorators can be placed in any order. e.g. zmm1 {k2}{z} or zmm2
* {z}{k3} decorator(s) are placed at the end of an operand.
*/
Expand Down
2 changes: 1 addition & 1 deletion asm/pragma.c
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ void process_pragma(char *str)

/*
* Search the global pragma namespaces. This is done
* as a loop rather than than letting search_pragma_list()
* as a loop rather than letting search_pragma_list()
* just run, because we don't want to keep searching if
* we have a facility match, thus we want to call
* search_pragma_list() individually for each namespace.
Expand Down
2 changes: 1 addition & 1 deletion asm/preproc.c
Original file line number Diff line number Diff line change
Expand Up @@ -5903,7 +5903,7 @@ static Token *expand_smacro_noreset(Token *org_tline)
Token **tail = &tline;

/*
* We hold warnings/errors until we are done this this loop. It is
* We hold warnings/errors until we are done in this loop. It is
* possible for nuisance warnings to appear that disappear on later
* passes.
*/
Expand Down
2 changes: 1 addition & 1 deletion output/outelf.c
Original file line number Diff line number Diff line change
Expand Up @@ -2824,7 +2824,7 @@ static void stabs_generate(void)
if (ptr) {
/*
* this is the first stab, its strx points to the filename of the
* the source-file, the n_desc field should be set to the number
* source-file, the n_desc field should be set to the number
* of remaining stabs
*/
WRITE_STAB(sptr, fileidx[0], 0, 0, 0, stabstrlen);
Expand Down