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 @@ -254,7 +254,7 @@ Bug Fixes in This Version
254
254
- Fix a crash when marco name is empty in ``#pragma push_macro("") `` or
255
255
``#pragma pop_macro("") ``. (#GH149762).
256
256
- Fix a crash in variable length array (e.g. ``int a[*] ``) function parameter type
257
- being used in ``_Countof `` expression. (#GH152826)
257
+ being used in ``_Countof `` expression. (#GH152826).
258
258
- `-Wunreachable-code`` now diagnoses tautological or contradictory
259
259
comparisons such as ``x != 0 || x != 1.0 `` and ``x == 0 && x == 1.0 `` on
260
260
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