[binutils-gdb] gas: Re-indent case OPTION_SFRAME:
H.J. Lu
hjl@sourceware.org
Tue Jul 15 02:18:01 GMT 2025
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=1535d2a0ce4e474f1a42e8b8720de01b7dc1f656
commit 1535d2a0ce4e474f1a42e8b8720de01b7dc1f656
Author: H.J. Lu <hjl.tools@gmail.com>
Date: Tue Jul 15 10:16:40 2025 +0800
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>
Diff:
---
gas/as.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
diff --git a/gas/as.c b/gas/as.c
index ce89d6f5aa7..acdf6bb74fd 100644
--- 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;
More information about the Binutils-cvs
mailing list