diff options
Diffstat (limited to 'gas/config/tc-nds32.c')
-rw-r--r-- | gas/config/tc-nds32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gas/config/tc-nds32.c b/gas/config/tc-nds32.c index 29ef3df..e5c0eaf 100644 --- a/gas/config/tc-nds32.c +++ b/gas/config/tc-nds32.c @@ -3712,7 +3712,7 @@ nds32_parse_option (int c, const char *arg) int disable = 0; /* Filter out the Disable option first. */ - if (strncmp (arg, "no-", 3) == 0) + if (startswith (arg, "no-")) { disable = 1; arg += 3; |