diff options
author | Ju-Zhe Zhong <juzhe.zhong@rivai.ai> | 2022-10-11 14:21:59 +0800 |
---|---|---|
committer | Kito Cheng <kito.cheng@sifive.com> | 2022-10-12 20:51:59 +0800 |
commit | 0af2b2f241cbac81a6af503cc4d575a9a0aaf7c0 (patch) | |
tree | a53dc4ba6d37acd3261284972b6ac390d0bf5085 | |
parent | ef0d7978914b89021d66df3baf03ccc103cf7467 (diff) | |
download | gcc-0af2b2f241cbac81a6af503cc4d575a9a0aaf7c0.zip gcc-0af2b2f241cbac81a6af503cc4d575a9a0aaf7c0.tar.gz gcc-0af2b2f241cbac81a6af503cc4d575a9a0aaf7c0.tar.bz2 |
RISC-V: Apply clang-format for riscv-vector-builtins.* [NFC]
gcc/ChangeLog:
* config/riscv/riscv-vector-builtins.cc (DEF_RVV_TYPE): Apply
clang-format.
(add_vector_type_attribute): Ditto.
* config/riscv/riscv-vector-builtins.def (DEF_RVV_TYPE): Apply
clang-format.
* config/riscv/riscv-vector-builtins.h (DEF_RVV_TYPE): Apply
clang-format.
-rw-r--r-- | gcc/config/riscv/riscv-vector-builtins.cc | 8 | ||||
-rw-r--r-- | gcc/config/riscv/riscv-vector-builtins.def | 2 | ||||
-rw-r--r-- | gcc/config/riscv/riscv-vector-builtins.h | 3 |
3 files changed, 6 insertions, 7 deletions
diff --git a/gcc/config/riscv/riscv-vector-builtins.cc b/gcc/config/riscv/riscv-vector-builtins.cc index b7cd1c5..99c4825 100644 --- a/gcc/config/riscv/riscv-vector-builtins.cc +++ b/gcc/config/riscv/riscv-vector-builtins.cc @@ -68,7 +68,7 @@ struct vector_type_info /* Information about each RVV type. */ static CONSTEXPR const vector_type_info vector_types[] = { -#define DEF_RVV_TYPE(NAME, NCHARS, ABI_NAME, ARGS...) \ +#define DEF_RVV_TYPE(NAME, NCHARS, ABI_NAME, ARGS...) \ {#NAME, #ABI_NAME, "u" #NCHARS #ABI_NAME}, #include "riscv-vector-builtins.def" }; @@ -76,7 +76,7 @@ static CONSTEXPR const vector_type_info vector_types[] = { /* The RVV types, with their built-in "__rvv..._t" name. Allow an index of NUM_VECTOR_TYPES, which always yields a null tree. */ -static GTY(()) tree abi_vector_types[NUM_VECTOR_TYPES + 1]; +static GTY (()) tree abi_vector_types[NUM_VECTOR_TYPES + 1]; /* Same, but with the riscv_vector.h "v..._t" name. */ extern GTY (()) rvv_builtin_types_t builtin_types[NUM_VECTOR_TYPES + 1]; @@ -124,8 +124,8 @@ add_vector_type_attribute (tree type, const char *mangled_name) { tree mangled_name_tree = get_identifier (mangled_name); tree value = tree_cons (NULL_TREE, mangled_name_tree, NULL_TREE); - TYPE_ATTRIBUTES (type) = tree_cons (get_identifier ("RVV type"), value, - TYPE_ATTRIBUTES (type)); + TYPE_ATTRIBUTES (type) + = tree_cons (get_identifier ("RVV type"), value, TYPE_ATTRIBUTES (type)); } /* Force TYPE to be a sizeless type. */ diff --git a/gcc/config/riscv/riscv-vector-builtins.def b/gcc/config/riscv/riscv-vector-builtins.def index 664734b..83603fe 100644 --- a/gcc/config/riscv/riscv-vector-builtins.def +++ b/gcc/config/riscv/riscv-vector-builtins.def @@ -32,7 +32,7 @@ along with GCC; see the file COPYING3. If not see TARGET_MIN_VLEN > 32. Otherwise the machine mode is VNx1SImode. */ #ifndef DEF_RVV_TYPE -#define DEF_RVV_TYPE(NAME, NCHARS, ABI_NAME, SCALAR_TYPE, VECTOR_MODE, \ +#define DEF_RVV_TYPE(NAME, NCHARS, ABI_NAME, SCALAR_TYPE, VECTOR_MODE, \ VECTOR_MODE_MIN_VLEN_32) #endif diff --git a/gcc/config/riscv/riscv-vector-builtins.h b/gcc/config/riscv/riscv-vector-builtins.h index 7d4b807..7f4e89c 100644 --- a/gcc/config/riscv/riscv-vector-builtins.h +++ b/gcc/config/riscv/riscv-vector-builtins.h @@ -30,8 +30,7 @@ const unsigned int MAX_TUPLE_SIZE = 8; "vector types" for brevity. */ enum vector_type_index { -#define DEF_RVV_TYPE(NAME, ABI_NAME, NCHARS, ARGS...) \ - VECTOR_TYPE_##NAME, +#define DEF_RVV_TYPE(NAME, ABI_NAME, NCHARS, ARGS...) VECTOR_TYPE_##NAME, #include "riscv-vector-builtins.def" NUM_VECTOR_TYPES }; |