File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -223,7 +223,7 @@ Bug Fixes in This Version
223
223
- Fix a crash when marco name is empty in ``#pragma push_macro("") `` or
224
224
``#pragma pop_macro("") ``. (#GH149762).
225
225
- Fix a crash in variable length array (e.g. ``int a[*] ``) function parameter type
226
- being used in ``_Countof `` expression. (#GH152826)
226
+ being used in ``_Countof `` expression. (#GH152826).
227
227
- `-Wunreachable-code`` now diagnoses tautological or contradictory
228
228
comparisons such as ``x != 0 || x != 1.0 `` and ``x == 0 && x == 1.0 `` on
229
229
targets that treat ``_Float16 ``/``__fp16 `` as native scalar types. Previously
Original file line number Diff line number Diff line change 2
2
// RUN: %clang_cc1 -std=c2y -verify -fexperimental-new-constant-interpreter %s
3
3
// expected-no-diagnostics
4
4
5
- void gh152826 (char (* a )[* ][5 ], int (* x )[_Countof (* a )]);
5
+ void gh152826 (char (* a )[* ][5 ], int (* x )[_Countof (* a )]);
6
6
void more_likely_in_practice (unsigned long size_one , int (* a )[* ][5 ], int b [_Countof (* a )]);
7
7
void f (int (* x )[* ][1 ][* ][2 ][* ][* ][3 ][* ], int q [_Countof (* x )]);
You can’t perform that action at this time.
0 commit comments