File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -131,7 +131,6 @@ FEATURE(objc_arc_fields, true)
131
131
FEATURE(objc_arc_weak, LangOpts.ObjCWeak)
132
132
FEATURE(objc_default_synthesize_properties, LangOpts.ObjC)
133
133
FEATURE(objc_fixed_enum, LangOpts.ObjC)
134
- FEATURE(c_fixed_enum, true )
135
134
FEATURE(objc_instancetype, LangOpts.ObjC)
136
135
FEATURE(objc_kindof, LangOpts.ObjC)
137
136
FEATURE(objc_modules, LangOpts.ObjC && LangOpts.Modules)
@@ -309,6 +308,10 @@ EXTENSION(datasizeof, LangOpts.CPlusPlus)
309
308
310
309
FEATURE(cxx_abi_relative_vtable, LangOpts.CPlusPlus && LangOpts.RelativeCXXABIVTables)
311
310
311
+ // Fixed enum feature and extension, to be relocated in this file
312
+ FEATURE(c_fixed_enum, true )
313
+ EXTENSION(c_fixed_enum, true )
314
+
312
315
// CUDA/HIP Features
313
316
FEATURE(cuda_noinline_keyword, LangOpts.CUDA)
314
317
EXTENSION(cuda_implicit_host_device_templates, LangOpts.CUDA && LangOpts.OffloadImplicitHostDeviceTemplates)
Original file line number Diff line number Diff line change @@ -185,7 +185,6 @@ enum IncOverflow {
185
185
V3 // pre-c23-warning {{incremented enumerator value which exceeds the range of 'int' is a C23 extension}}
186
186
};
187
187
188
-
189
188
#if __STDC_VERSION__ >= 202311L
190
189
// FIXME: GCC picks __uint128_t as the underlying type for the enumeration
191
190
// value and Clang picks unsigned long long.
You can’t perform that action at this time.
0 commit comments