diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2025-07-15 10:16:40 +0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2025-07-15 10:16:40 +0800 |
commit | 1535d2a0ce4e474f1a42e8b8720de01b7dc1f656 (patch) | |
tree | 0cf55ef3bff1bfce7e094dc26289deccdb830bcf | |
parent | 8aad677a12832885acd5be1de8f41e740b8e713d (diff) | |
download | binutils-1535d2a0ce4e474f1a42e8b8720de01b7dc1f656.zip binutils-1535d2a0ce4e474f1a42e8b8720de01b7dc1f656.tar.gz binutils-1535d2a0ce4e474f1a42e8b8720de01b7dc1f656.tar.bz2 |
gas: Re-indent case OPTION_SFRAME:
PR gas/33125
* gas/as.c (parse_args): Re-indent case OPTION_SFRAME:
Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
-rw-r--r-- | gas/as.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1041,12 +1041,12 @@ This program has absolutely no warranty.\n")); case OPTION_SFRAME: if (optarg) { - if (strcasecmp (optarg, "no") == 0) - flag_gen_sframe = 0; - else if (strcasecmp (optarg, "yes") == 0) - flag_gen_sframe = 1; - else - as_fatal (_("Invalid --gsframe option: `%s'"), optarg); + if (strcasecmp (optarg, "no") == 0) + flag_gen_sframe = 0; + else if (strcasecmp (optarg, "yes") == 0) + flag_gen_sframe = 1; + else + as_fatal (_("Invalid --gsframe option: `%s'"), optarg); } else flag_gen_sframe = 1; |