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/target-float.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/target-float.h')
-rw-r--r-- | gdb/target-float.h | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/gdb/target-float.h b/gdb/target-float.h index 029b65c..e4fa9ef 100644 --- a/gdb/target-float.h +++ b/gdb/target-float.h @@ -30,31 +30,28 @@ extern bool target_float_is_zero (const gdb_byte *addr, extern std::string target_float_to_string (const gdb_byte *addr, const struct type *type, const char *format = nullptr); -extern bool target_float_from_string (gdb_byte *addr, - const struct type *type, +extern bool target_float_from_string (gdb_byte *addr, const struct type *type, const std::string &string); extern LONGEST target_float_to_longest (const gdb_byte *addr, const struct type *type); -extern void target_float_from_longest (gdb_byte *addr, - const struct type *type, +extern void target_float_from_longest (gdb_byte *addr, const struct type *type, LONGEST val); extern void target_float_from_ulongest (gdb_byte *addr, - const struct type *type, - ULONGEST val); + const struct type *type, ULONGEST val); extern double target_float_to_host_double (const gdb_byte *addr, const struct type *type); extern void target_float_from_host_double (gdb_byte *addr, const struct type *type, double val); extern void target_float_convert (const gdb_byte *from, - const struct type *from_type, - gdb_byte *to, const struct type *to_type); + const struct type *from_type, gdb_byte *to, + const struct type *to_type); -extern void target_float_binop (enum exp_opcode opcode, - const gdb_byte *x, const struct type *type_x, - const gdb_byte *y, const struct type *type_y, - gdb_byte *res, const struct type *type_res); +extern void target_float_binop (enum exp_opcode opcode, const gdb_byte *x, + const struct type *type_x, const gdb_byte *y, + const struct type *type_y, gdb_byte *res, + const struct type *type_res); extern int target_float_compare (const gdb_byte *x, const struct type *type_x, const gdb_byte *y, const struct type *type_y); |