You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[analyzer] Change warnings to use the term uninitialized instead.
The prior change was using the message 'not meaningful and
undefined'. This changes updates it to use the term
uninitialized based on PR review feedback and discussion.
Copy file name to clipboardExpand all lines: clang/test/Analysis/Inputs/expected-plists/edges-new.mm.plist
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -2578,17 +2578,17 @@
2578
2578
</array>
2579
2579
<key>depth</key><integer>0</integer>
2580
2580
<key>extended_message</key>
2581
-
<string>The left expression of the compound assignment is an uninitialized value, so the computed value is not meaningful</string>
2581
+
<string>The left expression of the compound assignment uses uninitialized memory</string>
2582
2582
<key>message</key>
2583
-
<string>The left expression of the compound assignment is an uninitialized value, so the computed value is not meaningful</string>
2583
+
<string>The left expression of the compound assignment uses uninitialized memory</string>
2584
2584
</dict>
2585
2585
</array>
2586
-
<key>description</key><string>The left expression of the compound assignment is an uninitialized value, so the computed value is not meaningful</string>
2586
+
<key>description</key><string>The left expression of the compound assignment uses uninitialized memory</string>
2587
2587
<key>category</key><string>Logic error</string>
2588
-
<key>type</key><string>Assigned value is undefined and not meaningful</string>
2588
+
<key>type</key><string>Assigned value is uninitialized</string>
Copy file name to clipboardExpand all lines: clang/test/Analysis/Inputs/expected-plists/plist-output.m.plist
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -5864,17 +5864,17 @@
5864
5864
</array>
5865
5865
<key>depth</key><integer>0</integer>
5866
5866
<key>extended_message</key>
5867
-
<string>The left expression of the compound assignment is an uninitialized value, so the computed value is not meaningful</string>
5867
+
<string>The left expression of the compound assignment uses uninitialized memory</string>
5868
5868
<key>message</key>
5869
-
<string>The left expression of the compound assignment is an uninitialized value, so the computed value is not meaningful</string>
5869
+
<string>The left expression of the compound assignment uses uninitialized memory</string>
5870
5870
</dict>
5871
5871
</array>
5872
-
<key>description</key><string>The left expression of the compound assignment is an uninitialized value, so the computed value is not meaningful</string>
5872
+
<key>description</key><string>The left expression of the compound assignment uses uninitialized memory</string>
5873
5873
<key>category</key><string>Logic error</string>
5874
-
<key>type</key><string>Assigned value is undefined and not meaningful</string>
5874
+
<key>type</key><string>Assigned value is uninitialized</string>
0 commit comments