comparison gcc/config/aarch64/aarch64-opts.h @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
1 /* Copyright (C) 2011-2017 Free Software Foundation, Inc. 1 /* Copyright (C) 2011-2018 Free Software Foundation, Inc.
2 Contributed by ARM Ltd. 2 Contributed by ARM Ltd.
3 3
4 This file is part of GCC. 4 This file is part of GCC.
5 5
6 GCC is free software; you can redistribute it and/or modify it 6 GCC is free software; you can redistribute it and/or modify it
79 AARCH64_FUNCTION_NON_LEAF, 79 AARCH64_FUNCTION_NON_LEAF,
80 /* All functions. */ 80 /* All functions. */
81 AARCH64_FUNCTION_ALL 81 AARCH64_FUNCTION_ALL
82 }; 82 };
83 83
84 /* SVE vector register sizes. */
85 enum aarch64_sve_vector_bits_enum {
86 SVE_SCALABLE,
87 SVE_128 = 128,
88 SVE_256 = 256,
89 SVE_512 = 512,
90 SVE_1024 = 1024,
91 SVE_2048 = 2048
92 };
93
84 #endif 94 #endif