]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
gas: Re-indent case OPTION_SFRAME:
authorH.J. Lu <hjl.tools@gmail.com>
Tue, 15 Jul 2025 02:16:40 +0000 (10:16 +0800)
committerH.J. Lu <hjl.tools@gmail.com>
Tue, 15 Jul 2025 02:16:40 +0000 (10:16 +0800)
PR gas/33125
* gas/as.c (parse_args): Re-indent case OPTION_SFRAME:

Signed-off-by: H.J. Lu <hjl.tools@gmail.com>
gas/as.c

index ce89d6f5aa7d5742564bf41eeff1728dc7f83c64..acdf6bb74fd5499cf8876921a92bc867e6e1802c 100644 (file)
--- a/gas/as.c
+++ b/gas/as.c
@@ -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;