diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2023-02-08 15:36:23 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2023-02-08 15:46:02 -0500 |
commit | c583a2520616c2736cffc389c89a48b159366e6c (patch) | |
tree | b4925f26506fcee96c16119431c01760f05db95d /gdb/arch/arc.h | |
parent | ca7f92c2f15b86b09c4a8ad14806bef666308d31 (diff) | |
download | binutils-users/simark/clang-format.zip binutils-users/simark/clang-format.tar.gz binutils-users/simark/clang-format.tar.bz2 |
Run clang-format.shusers/simark/clang-format
Change-Id: Ia948cc26d534b0dd02702244d52434b1a2093968
Diffstat (limited to 'gdb/arch/arc.h')
-rw-r--r-- | gdb/arch/arc.h | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/gdb/arch/arc.h b/gdb/arch/arc.h index 38dbd0f..dd75a6a 100644 --- a/gdb/arch/arc.h +++ b/gdb/arch/arc.h @@ -23,15 +23,17 @@ /* Supported ARC ISAs. */ enum arc_isa { - ARC_ISA_ARCV1 = 1, /* a.k.a. ARCompact (ARC600, ARC700) */ - ARC_ISA_ARCV2 /* such as ARC EM and ARC HS */ + ARC_ISA_ARCV1 = 1, /* a.k.a. ARCompact (ARC600, ARC700) */ + ARC_ISA_ARCV2 /* such as ARC EM and ARC HS */ }; struct arc_arch_features { arc_arch_features (int reg_size, arc_isa isa) - : reg_size (reg_size), isa (isa) - {} + : reg_size (reg_size), + isa (isa) + { + } /* Register size in bytes. Possible values are 4, and 8. A 0 indicates an uninitialised value. */ @@ -70,18 +72,17 @@ struct arc_arch_features The only external client of this must be the gdbserver which manipulates the returned data. */ -target_desc_up arc_create_target_description - (const struct arc_arch_features &features); +target_desc_up +arc_create_target_description (const struct arc_arch_features &features); #else /* Lookup the cache for a target description matching the FEATURES. If nothing is found, then create one and return it. */ -const target_desc *arc_lookup_target_description - (const struct arc_arch_features &features); +const target_desc * +arc_lookup_target_description (const struct arc_arch_features &features); #endif /* GDBSERVER */ - #endif /* ARCH_ARC_H */ |