adlint 1.10.0 → 1.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. data/ChangeLog +197 -4
  2. data/MANIFEST +17 -0
  3. data/NEWS +23 -4
  4. data/etc/mesg.d/en_US/messages.yml +14 -1
  5. data/etc/mesg.d/ja_JP/messages.yml +14 -1
  6. data/features/message_detection/W0093.feature +87 -0
  7. data/features/message_detection/W0687.feature +25 -0
  8. data/features/message_detection/W0688.feature +63 -0
  9. data/features/message_detection/W0689.feature +46 -0
  10. data/features/message_detection/W0690.feature +35 -0
  11. data/features/message_detection/W0698.feature +3 -2
  12. data/features/message_detection/W0703.feature +1 -0
  13. data/features/message_detection/W0723.feature +34 -0
  14. data/features/message_detection/W0732.feature +158 -0
  15. data/features/message_detection/W0733.feature +158 -0
  16. data/features/message_detection/W0734.feature +322 -0
  17. data/features/message_detection/W0735.feature +322 -0
  18. data/features/message_detection/W1052.feature +66 -0
  19. data/features/message_detection/W9001.feature +33 -0
  20. data/features/message_detection/W9003.feature +131 -0
  21. data/lib/adlint/c/ctrlexpr.rb +51 -50
  22. data/lib/adlint/c/domain.rb +237 -223
  23. data/lib/adlint/c/expr.rb +6 -8
  24. data/lib/adlint/c/interp.rb +8 -11
  25. data/lib/adlint/c/message.rb +20 -0
  26. data/lib/adlint/c/message_shima.rb +63 -0
  27. data/lib/adlint/c/object.rb +5 -4
  28. data/lib/adlint/c/operator.rb +99 -0
  29. data/lib/adlint/c/parser.rb +2 -2
  30. data/lib/adlint/c/parser.y +2 -2
  31. data/lib/adlint/c/phase.rb +6 -1
  32. data/lib/adlint/c/syntax.rb +442 -30
  33. data/lib/adlint/c/type.rb +449 -363
  34. data/lib/adlint/c/value.rb +96 -25
  35. data/lib/adlint/c.rb +1 -0
  36. data/lib/adlint/prelude.rb +16 -18
  37. data/lib/adlint/version.rb +2 -2
  38. data/share/doc/developers_guide_ja.html +11 -5
  39. data/share/doc/developers_guide_ja.texi +9 -3
  40. data/share/doc/users_guide_en.html +697 -131
  41. data/share/doc/users_guide_en.texi +491 -41
  42. data/share/doc/users_guide_ja.html +709 -139
  43. data/share/doc/users_guide_ja.texi +499 -45
  44. data/spec/adlint/c/ctrlexpr_spec.rb +168 -0
  45. data/spec/adlint/c/domain_spec.rb +835 -0
  46. data/spec/adlint/c/operator_spec.rb +406 -0
  47. data/spec/adlint/c/syntax_spec.rb +717 -0
  48. data/spec/adlint/c/type_spec.rb +55 -30
  49. metadata +19 -2
@@ -1,8 +1,8 @@
1
1
  <html lang="en">
2
2
  <head>
3
- <title>AdLint 1.10.0 User's Guide</title>
3
+ <title>AdLint 1.12.0 User's Guide</title>
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5
- <meta name="description" content="AdLint 1.10.0 User's Guide">
5
+ <meta name="description" content="AdLint 1.12.0 User's Guide">
6
6
  <meta name="generator" content="makeinfo 4.13">
7
7
  <link title="Top" rel="top" href="#Top">
8
8
  <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
@@ -44,7 +44,7 @@ td { border: 1px solid black; }
44
44
  --></style>
45
45
  </head>
46
46
  <body>
47
- <h1 class="settitle">AdLint 1.10.0 User's Guide</h1>
47
+ <h1 class="settitle">AdLint 1.12.0 User's Guide</h1>
48
48
  <div class="node">
49
49
  <a name="Top"></a>
50
50
  <p><hr>
@@ -2815,8 +2815,21 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Top">Top</a>
2815
2815
  <li><a href="#W1063">W1063</a>: The return value returned from enumeration type function to non constant expression.
2816
2816
  <li><a href="#W1064">W1064</a>: A integer constant is used in switch statement where case label is enumeration type.
2817
2817
  <li><a href="#W1065">W1065</a>: A value of different enumeration type is used in switch statement where case label is an enumeration type.
2818
+ <li><a href="#W1066">W1066</a>: A value of the `float' typed compound expression is explicitly converted into a `double' value.
2819
+ <li><a href="#W1067">W1067</a>: A value of the `float' typed compound expression is explicitly converted into a `long double' value.
2820
+ <li><a href="#W1068">W1068</a>: A value of the `double' typed compound expression is explicitly converted into a `long double' value.
2821
+ <li><a href="#W1069">W1069</a>: No trailing `else' clause is found in this `if-else-if' statements chain.
2822
+ <li><a href="#W1070">W1070</a>: This `switch' statement can be translated into `if-else' statement because there are only 2 execution paths.
2823
+ <li><a href="#W1071">W1071</a>: Function `%s' has multiple termination points.
2824
+ <li><a href="#W1072">W1072</a>: `A `goto' statement is found.
2825
+ <li><a href="#W1073">W1073</a>: A return value of function `%s' is not used.。
2826
+ <li><a href="#W1074">W1074</a>: Side-effects in `sizeof' operand will not be recorded because the operand will not be executed actually.
2827
+ <li><a href="#W1075">W1075</a>: This declaration has no `static' storage-class-specifier while the declaring object has internal-linkage.
2828
+ <li><a href="#W1076">W1076</a>: `%s' is defined as internal-linkage, but it has no forward declaration.
2829
+ <li><a href="#W1077">W1077</a>: Declaring array object without a size.
2818
2830
  <li><a href="#W9001">W9001</a>: This statement doesn't reach the control.
2819
2831
  <li><a href="#W9002">W9002</a>: There is no line feed character at the end of file.
2832
+ <li><a href="#W9003">W9003</a>: An object typed `%s' is implicitly converted into an object of other type.
2820
2833
  <li><a href="#C0001">C0001</a>: A warning is detected in external identifier name `%s'.
2821
2834
  </ul>
2822
2835
 
@@ -33239,7 +33252,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
33239
33252
 
33240
33253
  <h4 class="subsection">6.571.2 Content</h4>
33241
33254
 
33242
- <p><b>This message will be supported in AdLint 2.0.0</b>
33255
+ <p><b>This message will be supported after AdLint 2.0.0</b>
33243
33256
 
33244
33257
  <p>Under construction.
33245
33258
 
@@ -33256,7 +33269,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
33256
33269
 
33257
33270
  <h4 class="subsection">6.571.5 Since</h4>
33258
33271
 
33259
- <p>2.0.0 (planned)
33272
+ <p>After 2.0.0 (planned)
33260
33273
 
33261
33274
  <div class="node">
33262
33275
  <a name="W0694"></a>
@@ -34304,7 +34317,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
34304
34317
 
34305
34318
  <h4 class="subsection">6.597.2 Content</h4>
34306
34319
 
34307
- <p><b>This message will be supported in AdLint 2.0.0</b>
34320
+ <p><b>This message will be supported after AdLint 2.0.0</b>
34308
34321
 
34309
34322
  <p>Under construction.
34310
34323
 
@@ -34319,7 +34332,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
34319
34332
 
34320
34333
  <h4 class="subsection">6.597.5 Since</h4>
34321
34334
 
34322
- <p>2.0.0 (planned)
34335
+ <p>After 2.0.0 (planned)
34323
34336
 
34324
34337
  <div class="node">
34325
34338
  <a name="W0726"></a>
@@ -34615,13 +34628,19 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
34615
34628
 
34616
34629
  <h4 class="subsection">6.604.2 Content</h4>
34617
34630
 
34618
- <p><b>This message will be supported in AdLint 2.0.0</b>
34619
-
34620
- <p>Under construction.
34631
+ <p>Under construction.
34621
34632
 
34622
34633
  <h4 class="subsection">6.604.3 Sample code</h4>
34623
34634
 
34624
- <pre class="verbatim">/* will be added */
34635
+ <pre class="verbatim">extern void func(unsigned int a, unsigned int b,unsigned int c, unsigned int d)
34636
+ {
34637
+ int r;
34638
+ r = (a + b) &amp;&amp; (c - d); /* W0732 */
34639
+ r = (a * b) &amp;&amp; (c / d); /* W0732 */
34640
+
34641
+ r = (a &lt;&lt; b) &amp;&amp; (c &lt;&lt; d); /* W0732 */
34642
+ r = (a >> b) &amp;&amp; (c >> d); /* W0732 */
34643
+ }
34625
34644
  </pre>
34626
34645
 
34627
34646
  <h4 class="subsection">6.604.4 Related message</h4>
@@ -34634,7 +34653,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
34634
34653
 
34635
34654
  <h4 class="subsection">6.604.5 Since</h4>
34636
34655
 
34637
- <p>2.0.0 (planned)
34656
+ <p>1.12.0
34638
34657
 
34639
34658
  <div class="node">
34640
34659
  <a name="W0733"></a>
@@ -34655,13 +34674,19 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
34655
34674
 
34656
34675
  <h4 class="subsection">6.605.2 Content</h4>
34657
34676
 
34658
- <p><b>This message will be supported in AdLint 2.0.0</b>
34659
-
34660
- <p>Under construction.
34677
+ <p>Under construction.
34661
34678
 
34662
34679
  <h4 class="subsection">6.605.3 Sample code</h4>
34663
34680
 
34664
- <pre class="verbatim">/* will be added */
34681
+ <pre class="verbatim">extern void func(unsigned int a, unsigned int b,unsigned int c, unsigned int d)
34682
+ {
34683
+ int r;
34684
+ r = (a + b) || (c - d); /* W0733 */
34685
+ r = (a * b) || (c / d); /* W0733 */
34686
+
34687
+ r = (a &lt;&lt; b) || (c &lt;&lt; d); /* W0733 */
34688
+ r = (a >> b) || (c >> d); /* W0733 */
34689
+ }
34665
34690
  </pre>
34666
34691
 
34667
34692
  <h4 class="subsection">6.605.4 Related message</h4>
@@ -34674,7 +34699,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
34674
34699
 
34675
34700
  <h4 class="subsection">6.605.5 Since</h4>
34676
34701
 
34677
- <p>2.0.0 (planned)
34702
+ <p>1.12.0
34678
34703
 
34679
34704
  <div class="node">
34680
34705
  <a name="W0734"></a>
@@ -34695,13 +34720,19 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
34695
34720
 
34696
34721
  <h4 class="subsection">6.606.2 Content</h4>
34697
34722
 
34698
- <p><b>This message will be supported in AdLint 2.0.0</b>
34699
-
34700
- <p>Under construction.
34723
+ <p>Under construction.
34701
34724
 
34702
34725
  <h4 class="subsection">6.606.3 Sample code</h4>
34703
34726
 
34704
- <pre class="verbatim">/* will be added */
34727
+ <pre class="verbatim">extern void func(unsigned int a, unsigned int b, unsigned int c)
34728
+ {
34729
+ int r;
34730
+ r = (a + b) &amp;&amp; c; /* W0734 */
34731
+ r = (a - b) &amp;&amp; c; /* W0734 */
34732
+
34733
+ r = (a &lt;&lt; b) || c; /* W0734 */
34734
+ r = (a >> b) || c; /* W0734 */
34735
+ }
34705
34736
  </pre>
34706
34737
 
34707
34738
  <h4 class="subsection">6.606.4 Related message</h4>
@@ -34714,7 +34745,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
34714
34745
 
34715
34746
  <h4 class="subsection">6.606.5 Since</h4>
34716
34747
 
34717
- <p>2.0.0 (planned)
34748
+ <p>1.12.0
34718
34749
 
34719
34750
  <div class="node">
34720
34751
  <a name="W0735"></a>
@@ -34735,13 +34766,19 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
34735
34766
 
34736
34767
  <h4 class="subsection">6.607.2 Content</h4>
34737
34768
 
34738
- <p><b>This message will be supported in AdLint 2.0.0</b>
34739
-
34740
- <p>Under construction.
34769
+ <p>Under construction.
34741
34770
 
34742
34771
  <h4 class="subsection">6.607.3 Sample code</h4>
34743
34772
 
34744
- <pre class="verbatim">/* will be added */
34773
+ <pre class="verbatim">extern void func(unsigned int a, unsigned int b, unsigned int c)
34774
+ {
34775
+ int r;
34776
+ r = a &amp;&amp; (b + c); /* W0735 */
34777
+ r = a &amp;&amp; (b - c); /* W0735 */
34778
+
34779
+ r = a || (b >> c); /* W0735 */
34780
+ r = a || (b &lt;&lt; c); /* W0735 */
34781
+ }
34745
34782
  </pre>
34746
34783
 
34747
34784
  <h4 class="subsection">6.607.4 Related message</h4>
@@ -34754,7 +34791,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
34754
34791
 
34755
34792
  <h4 class="subsection">6.607.5 Since</h4>
34756
34793
 
34757
- <p>2.0.0 (planned)
34794
+ <p>1.12.0
34758
34795
 
34759
34796
  <div class="node">
34760
34797
  <a name="W0736"></a>
@@ -36977,7 +37014,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
36977
37014
 
36978
37015
  <h4 class="subsection">6.652.2 Content</h4>
36979
37016
 
36980
- <p><b>This message will be supported in AdLint 2.0.0</b>
37017
+ <p><b>This message will be supported after AdLint 2.0.0</b>
36981
37018
 
36982
37019
  <p>Under construction.
36983
37020
 
@@ -36992,7 +37029,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
36992
37029
 
36993
37030
  <h4 class="subsection">6.652.5 Since</h4>
36994
37031
 
36995
- <p>2.0.0 (planned)
37032
+ <p>After 2.0.0 (planned)
36996
37033
 
36997
37034
  <div class="node">
36998
37035
  <a name="W0785"></a>
@@ -37738,7 +37775,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
37738
37775
 
37739
37776
  <h4 class="subsection">6.670.2 Content</h4>
37740
37777
 
37741
- <p><b>This message will be supported in AdLint 2.0.0</b>
37778
+ <p><b>This message will be supported after AdLint 2.0.0</b>
37742
37779
 
37743
37780
  <p>Under construction.
37744
37781
 
@@ -37756,7 +37793,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
37756
37793
 
37757
37794
  <h4 class="subsection">6.670.5 Since</h4>
37758
37795
 
37759
- <p>2.0.0 (planned)
37796
+ <p>After 2.0.0 (planned)
37760
37797
 
37761
37798
  <div class="node">
37762
37799
  <a name="W0803"></a>
@@ -37777,7 +37814,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
37777
37814
 
37778
37815
  <h4 class="subsection">6.671.2 Content</h4>
37779
37816
 
37780
- <p><b>This message will be supported in AdLint 2.0.0</b>
37817
+ <p><b>This message will be supported after AdLint 2.0.0</b>
37781
37818
 
37782
37819
  <p>Under construction.
37783
37820
 
@@ -37792,7 +37829,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
37792
37829
 
37793
37830
  <h4 class="subsection">6.671.5 Since</h4>
37794
37831
 
37795
- <p>2.0.0 (planned)
37832
+ <p>After 2.0.0 (planned)
37796
37833
 
37797
37834
  <div class="node">
37798
37835
  <a name="W0804"></a>
@@ -38410,7 +38447,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
38410
38447
 
38411
38448
  <h4 class="subsection">6.687.2 Content</h4>
38412
38449
 
38413
- <p><b>This message will be supported in AdLint 2.0.0</b>
38450
+ <p><b>This message will be supported after AdLint 2.0.0</b>
38414
38451
 
38415
38452
  <p>Under construction.
38416
38453
 
@@ -38425,7 +38462,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
38425
38462
 
38426
38463
  <h4 class="subsection">6.687.5 Since</h4>
38427
38464
 
38428
- <p>2.0.0 (planned)
38465
+ <p>After 2.0.0 (planned)
38429
38466
 
38430
38467
  <div class="node">
38431
38468
  <a name="W0947"></a>
@@ -38958,7 +38995,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
38958
38995
 
38959
38996
  <h4 class="subsection">6.701.2 Content</h4>
38960
38997
 
38961
- <p><b>This message will be supported in AdLint 2.0.0</b>
38998
+ <p><b>This message will be supported after AdLint 2.0.0</b>
38962
38999
 
38963
39000
  <p>Under construction.
38964
39001
 
@@ -38975,7 +39012,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
38975
39012
 
38976
39013
  <h4 class="subsection">6.701.5 Since</h4>
38977
39014
 
38978
- <p>2.0.0 (planned)
39015
+ <p>After 2.0.0 (planned)
38979
39016
 
38980
39017
  <div class="node">
38981
39018
  <a name="W1036"></a>
@@ -38996,7 +39033,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
38996
39033
 
38997
39034
  <h4 class="subsection">6.702.2 Content</h4>
38998
39035
 
38999
- <p><b>This message will be supported in AdLint 2.0.0</b>
39036
+ <p><b>This message will be supported after AdLint 2.0.0</b>
39000
39037
 
39001
39038
  <p>Under construction.
39002
39039
 
@@ -39013,7 +39050,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
39013
39050
 
39014
39051
  <h4 class="subsection">6.702.5 Since</h4>
39015
39052
 
39016
- <p>2.0.0 (planned)
39053
+ <p>After 2.0.0 (planned)
39017
39054
 
39018
39055
  <div class="node">
39019
39056
  <a name="W1037"></a>
@@ -39189,7 +39226,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
39189
39226
 
39190
39227
  <h4 class="subsection">6.707.2 Content</h4>
39191
39228
 
39192
- <p><b>This message will be supported in AdLint 2.0.0</b>
39229
+ <p><b>This message will be supported after AdLint 2.0.0</b>
39193
39230
 
39194
39231
  <p>Under construction.
39195
39232
 
@@ -39207,7 +39244,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
39207
39244
 
39208
39245
  <h4 class="subsection">6.707.5 Since</h4>
39209
39246
 
39210
- <p>2.0.0 (planned)
39247
+ <p>After 2.0.0 (planned)
39211
39248
 
39212
39249
  <div class="node">
39213
39250
  <a name="W1043"></a>
@@ -39228,7 +39265,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
39228
39265
 
39229
39266
  <h4 class="subsection">6.708.2 Content</h4>
39230
39267
 
39231
- <p><b>This message will be supported in AdLint 2.0.0</b>
39268
+ <p><b>This message will be supported after AdLint 2.0.0</b>
39232
39269
 
39233
39270
  <p>Under construction.
39234
39271
 
@@ -39246,7 +39283,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
39246
39283
 
39247
39284
  <h4 class="subsection">6.708.5 Since</h4>
39248
39285
 
39249
- <p>2.0.0 (planned)
39286
+ <p>After 2.0.0 (planned)
39250
39287
 
39251
39288
  <div class="node">
39252
39289
  <a name="W1044"></a>
@@ -39306,7 +39343,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
39306
39343
 
39307
39344
  <h4 class="subsection">6.710.2 Content</h4>
39308
39345
 
39309
- <p><b>This message will be supported in AdLint 2.0.0</b>
39346
+ <p><b>This message will be supported after AdLint 2.0.0</b>
39310
39347
 
39311
39348
  <p>Under construction.
39312
39349
 
@@ -39324,7 +39361,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
39324
39361
 
39325
39362
  <h4 class="subsection">6.710.5 Since</h4>
39326
39363
 
39327
- <p>2.0.0 (planned)
39364
+ <p>After 2.0.0 (planned)
39328
39365
 
39329
39366
  <div class="node">
39330
39367
  <a name="W1046"></a>
@@ -39417,7 +39454,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
39417
39454
 
39418
39455
  <h4 class="subsection">6.713.2 Content</h4>
39419
39456
 
39420
- <p><b>This message will be supported in AdLint 2.0.0</b>
39457
+ <p><b>This message will be supported after AdLint 2.0.0</b>
39421
39458
 
39422
39459
  <p>Under construction.
39423
39460
 
@@ -39432,7 +39469,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
39432
39469
 
39433
39470
  <h4 class="subsection">6.713.5 Since</h4>
39434
39471
 
39435
- <p>2.0.0 (planned)
39472
+ <p>After 2.0.0 (planned)
39436
39473
 
39437
39474
  <div class="node">
39438
39475
  <a name="W1049"></a>
@@ -40277,7 +40314,7 @@ int func(enum Color c)
40277
40314
  <div class="node">
40278
40315
  <a name="W1065"></a>
40279
40316
  <p><hr>
40280
- Next:&nbsp;<a rel="next" accesskey="n" href="#W9001">W9001</a>,
40317
+ Next:&nbsp;<a rel="next" accesskey="n" href="#W1066">W1066</a>,
40281
40318
  Previous:&nbsp;<a rel="previous" accesskey="p" href="#W1064">W1064</a>,
40282
40319
  Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
40283
40320
 
@@ -40335,26 +40372,498 @@ int func(enum Color c)
40335
40372
  <p>1.4.0
40336
40373
 
40337
40374
  <div class="node">
40338
- <a name="W9001"></a>
40375
+ <a name="W1066"></a>
40339
40376
  <p><hr>
40340
- Next:&nbsp;<a rel="next" accesskey="n" href="#W9002">W9002</a>,
40377
+ Next:&nbsp;<a rel="next" accesskey="n" href="#W1067">W1067</a>,
40341
40378
  Previous:&nbsp;<a rel="previous" accesskey="p" href="#W1065">W1065</a>,
40342
40379
  Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
40343
40380
 
40344
40381
  </div>
40345
40382
 
40346
- <h3 class="section">6.731 W9001</h3>
40383
+ <h3 class="section">6.731 W1066</h3>
40384
+
40385
+ <p><a name="index-W1066-766"></a>
40347
40386
 
40348
40387
  <h4 class="subsection">6.731.1 Message body</h4>
40349
40388
 
40350
- <p>This statement doesn't reach the control.
40389
+ <p>A value of the `float' typed compound expression is explicitly converted into a `double' value.
40351
40390
 
40352
40391
  <h4 class="subsection">6.731.2 Content</h4>
40353
40392
 
40354
- <p>Under construction.
40393
+ <p><b>This message will be supported in AdLint 2.0.0</b>
40394
+
40395
+ <p>Under construction.
40355
40396
 
40356
40397
  <h4 class="subsection">6.731.3 Sample code</h4>
40357
40398
 
40399
+ <pre class="verbatim">void func(float a)
40400
+ {
40401
+ double b = (double) (a * a);
40402
+ }
40403
+ </pre>
40404
+
40405
+ <h4 class="subsection">6.731.4 Related message</h4>
40406
+
40407
+ <ul>
40408
+ <li><a href="#W1067">W1067</a> A value of the `float' typed compound expression is explicitly converted into a `long double' value.
40409
+ <li><a href="#W1068">W1068</a> A value of the `double' typed compound expression is explicitly converted into a `long double' value.
40410
+ </ul>
40411
+
40412
+ <h4 class="subsection">6.731.5 Since</h4>
40413
+
40414
+ <p>2.0.0 (planned)
40415
+
40416
+ <div class="node">
40417
+ <a name="W1067"></a>
40418
+ <p><hr>
40419
+ Next:&nbsp;<a rel="next" accesskey="n" href="#W1068">W1068</a>,
40420
+ Previous:&nbsp;<a rel="previous" accesskey="p" href="#W1066">W1066</a>,
40421
+ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
40422
+
40423
+ </div>
40424
+
40425
+ <h3 class="section">6.732 W1067</h3>
40426
+
40427
+ <p><a name="index-W1067-767"></a>
40428
+
40429
+ <h4 class="subsection">6.732.1 Message body</h4>
40430
+
40431
+ <p>A value of the `float' typed compound expression is explicitly converted into a `long double' value.
40432
+
40433
+ <h4 class="subsection">6.732.2 Content</h4>
40434
+
40435
+ <p><b>This message will be supported in AdLint 2.0.0</b>
40436
+
40437
+ <p>Under construction.
40438
+
40439
+ <h4 class="subsection">6.732.3 Sample code</h4>
40440
+
40441
+ <pre class="verbatim">void func(float a)
40442
+ {
40443
+ long double b = (long double) (a * a);
40444
+ }
40445
+ </pre>
40446
+
40447
+ <h4 class="subsection">6.732.4 Related message</h4>
40448
+
40449
+ <ul>
40450
+ <li><a href="#W1066">W1066</a> A value of the `float' typed compound expression is explicitly converted into a `double' value.
40451
+ <li><a href="#W1068">W1068</a> A value of the `double' typed compound expression is explicitly converted into a `long double' value.
40452
+ </ul>
40453
+
40454
+ <h4 class="subsection">6.732.5 Since</h4>
40455
+
40456
+ <p>2.0.0 (planned)
40457
+
40458
+ <div class="node">
40459
+ <a name="W1068"></a>
40460
+ <p><hr>
40461
+ Next:&nbsp;<a rel="next" accesskey="n" href="#W1069">W1069</a>,
40462
+ Previous:&nbsp;<a rel="previous" accesskey="p" href="#W1067">W1067</a>,
40463
+ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
40464
+
40465
+ </div>
40466
+
40467
+ <h3 class="section">6.733 W1068</h3>
40468
+
40469
+ <p><a name="index-W1068-768"></a>
40470
+
40471
+ <h4 class="subsection">6.733.1 Message body</h4>
40472
+
40473
+ <p>A value of the `double' typed compound expression is explicitly converted into a `long double' value.
40474
+
40475
+ <h4 class="subsection">6.733.2 Content</h4>
40476
+
40477
+ <p><b>This message will be supported in AdLint 2.0.0</b>
40478
+
40479
+ <p>Under construction.
40480
+
40481
+ <h4 class="subsection">6.733.3 Sample code</h4>
40482
+
40483
+ <pre class="verbatim">void func(double a)
40484
+ {
40485
+ long double b = (long double) (a * a);
40486
+ }
40487
+ </pre>
40488
+
40489
+ <h4 class="subsection">6.733.4 Related message</h4>
40490
+
40491
+ <ul>
40492
+ <li><a href="#W1066">W1066</a> A value of the `float' typed compound expression is explicitly converted into a `double' value.
40493
+ <li><a href="#W1067">W1067</a> A value of the `float' typed compound expression is explicitly converted into a `long double' value.
40494
+ </ul>
40495
+
40496
+ <h4 class="subsection">6.733.5 Since</h4>
40497
+
40498
+ <p>2.0.0 (planned)
40499
+
40500
+ <div class="node">
40501
+ <a name="W1069"></a>
40502
+ <p><hr>
40503
+ Next:&nbsp;<a rel="next" accesskey="n" href="#W1070">W1070</a>,
40504
+ Previous:&nbsp;<a rel="previous" accesskey="p" href="#W1068">W1068</a>,
40505
+ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
40506
+
40507
+ </div>
40508
+
40509
+ <h3 class="section">6.734 W1069</h3>
40510
+
40511
+ <p><a name="index-W1069-769"></a>
40512
+
40513
+ <h4 class="subsection">6.734.1 Message body</h4>
40514
+
40515
+ <p>No trailing `else' clause is found in this `if-else-if' statements chain.
40516
+
40517
+ <h4 class="subsection">6.734.2 Content</h4>
40518
+
40519
+ <p><b>This message will be supported in AdLint 2.0.0</b>
40520
+
40521
+ <p>Under construction.
40522
+
40523
+ <h4 class="subsection">6.734.3 Sample code</h4>
40524
+
40525
+ <pre class="verbatim">/* will be added */
40526
+ </pre>
40527
+
40528
+ <h4 class="subsection">6.734.4 Related message</h4>
40529
+
40530
+ <p>None.
40531
+
40532
+ <h4 class="subsection">6.734.5 Since</h4>
40533
+
40534
+ <p>2.0.0 (planned)
40535
+
40536
+ <div class="node">
40537
+ <a name="W1070"></a>
40538
+ <p><hr>
40539
+ Next:&nbsp;<a rel="next" accesskey="n" href="#W1071">W1071</a>,
40540
+ Previous:&nbsp;<a rel="previous" accesskey="p" href="#W1069">W1069</a>,
40541
+ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
40542
+
40543
+ </div>
40544
+
40545
+ <h3 class="section">6.735 W1070</h3>
40546
+
40547
+ <p><a name="index-W1070-770"></a>
40548
+
40549
+ <h4 class="subsection">6.735.1 Message body</h4>
40550
+
40551
+ <p>This `switch' statement can be translated into `if-else' statement because there are only 2 execution paths.
40552
+
40553
+ <h4 class="subsection">6.735.2 Content</h4>
40554
+
40555
+ <p><b>This message will be supported in AdLint 2.0.0</b>
40556
+
40557
+ <p>Under construction.
40558
+
40559
+ <h4 class="subsection">6.735.3 Sample code</h4>
40560
+
40561
+ <pre class="verbatim">switch (x) {
40562
+ case 1:
40563
+ ...
40564
+ break;
40565
+ default:
40566
+ ...
40567
+ }
40568
+ </pre>
40569
+
40570
+ <h4 class="subsection">6.735.4 Related message</h4>
40571
+
40572
+ <p>None.
40573
+
40574
+ <h4 class="subsection">6.735.5 Since</h4>
40575
+
40576
+ <p>2.0.0 (planned)
40577
+
40578
+ <div class="node">
40579
+ <a name="W1071"></a>
40580
+ <p><hr>
40581
+ Next:&nbsp;<a rel="next" accesskey="n" href="#W1072">W1072</a>,
40582
+ Previous:&nbsp;<a rel="previous" accesskey="p" href="#W1070">W1070</a>,
40583
+ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
40584
+
40585
+ </div>
40586
+
40587
+ <h3 class="section">6.736 W1071</h3>
40588
+
40589
+ <p><a name="index-W1071-771"></a>
40590
+
40591
+ <h4 class="subsection">6.736.1 Message body</h4>
40592
+
40593
+ <p>Function `%s' has multiple termination points.
40594
+
40595
+ <h4 class="subsection">6.736.2 Content</h4>
40596
+
40597
+ <p><b>This message will be supported in AdLint 2.0.0</b>
40598
+
40599
+ <p>Under construction.
40600
+
40601
+ <h4 class="subsection">6.736.3 Sample code</h4>
40602
+
40603
+ <pre class="verbatim">int func(int a)
40604
+ {
40605
+ if( a == 0 ) {
40606
+ return 0;
40607
+ }
40608
+ else {
40609
+ return 1; /* W1071 */
40610
+ }
40611
+ }
40612
+ </pre>
40613
+
40614
+ <h4 class="subsection">6.736.4 Related message</h4>
40615
+
40616
+ <p>None.
40617
+
40618
+ <h4 class="subsection">6.736.5 Since</h4>
40619
+
40620
+ <p>2.0.0 (planned)
40621
+
40622
+ <div class="node">
40623
+ <a name="W1072"></a>
40624
+ <p><hr>
40625
+ Next:&nbsp;<a rel="next" accesskey="n" href="#W1073">W1073</a>,
40626
+ Previous:&nbsp;<a rel="previous" accesskey="p" href="#W1071">W1071</a>,
40627
+ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
40628
+
40629
+ </div>
40630
+
40631
+ <h3 class="section">6.737 W1072</h3>
40632
+
40633
+ <p><a name="index-W1072-772"></a>
40634
+
40635
+ <h4 class="subsection">6.737.1 Message body</h4>
40636
+
40637
+ <p>`A `goto' statement is found.
40638
+
40639
+ <h4 class="subsection">6.737.2 Content</h4>
40640
+
40641
+ <p><b>This message will be supported in AdLint 2.0.0</b>
40642
+
40643
+ <p>Under construction.
40644
+
40645
+ <h4 class="subsection">6.737.3 Sample code</h4>
40646
+
40647
+ <pre class="verbatim">/* will be added */
40648
+ </pre>
40649
+
40650
+ <h4 class="subsection">6.737.4 Related message</h4>
40651
+
40652
+ <p>None.
40653
+
40654
+ <h4 class="subsection">6.737.5 Since</h4>
40655
+
40656
+ <p>2.0.0 (planned)
40657
+
40658
+ <div class="node">
40659
+ <a name="W1073"></a>
40660
+ <p><hr>
40661
+ Next:&nbsp;<a rel="next" accesskey="n" href="#W1074">W1074</a>,
40662
+ Previous:&nbsp;<a rel="previous" accesskey="p" href="#W1072">W1072</a>,
40663
+ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
40664
+
40665
+ </div>
40666
+
40667
+ <h3 class="section">6.738 W1073</h3>
40668
+
40669
+ <p><a name="index-W1073-773"></a>
40670
+
40671
+ <h4 class="subsection">6.738.1 Message body</h4>
40672
+
40673
+ <p>A return value of function `%s' is not used.。
40674
+
40675
+ <h4 class="subsection">6.738.2 Content</h4>
40676
+
40677
+ <p><b>This message will be supported in AdLint 2.0.0</b>
40678
+
40679
+ <p>Under construction.
40680
+
40681
+ <h4 class="subsection">6.738.3 Sample code</h4>
40682
+
40683
+ <pre class="verbatim">/* will be added */
40684
+ </pre>
40685
+
40686
+ <h4 class="subsection">6.738.4 Related message</h4>
40687
+
40688
+ <p>None.
40689
+
40690
+ <h4 class="subsection">6.738.5 Since</h4>
40691
+
40692
+ <p>2.0.0 (planned)
40693
+
40694
+ <div class="node">
40695
+ <a name="W1074"></a>
40696
+ <p><hr>
40697
+ Next:&nbsp;<a rel="next" accesskey="n" href="#W1075">W1075</a>,
40698
+ Previous:&nbsp;<a rel="previous" accesskey="p" href="#W1073">W1073</a>,
40699
+ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
40700
+
40701
+ </div>
40702
+
40703
+ <h3 class="section">6.739 W1074</h3>
40704
+
40705
+ <p><a name="index-W1074-774"></a>
40706
+
40707
+ <h4 class="subsection">6.739.1 Message body</h4>
40708
+
40709
+ <p>Side-effects in `sizeof' operand will not be recorded because the operand will not be executed actually.
40710
+
40711
+ <h4 class="subsection">6.739.2 Content</h4>
40712
+
40713
+ <p><b>This message will be supported in AdLint 2.0.0</b>
40714
+
40715
+ <p>Under construction.
40716
+
40717
+ <h4 class="subsection">6.739.3 Sample code</h4>
40718
+
40719
+ <pre class="verbatim">int i = sizeof(data++); /* W1074 */
40720
+ </pre>
40721
+
40722
+ <h4 class="subsection">6.739.4 Related message</h4>
40723
+
40724
+ <p>None.
40725
+
40726
+ <h4 class="subsection">6.739.5 Since</h4>
40727
+
40728
+ <p>2.0.0 (planned)
40729
+
40730
+ <div class="node">
40731
+ <a name="W1075"></a>
40732
+ <p><hr>
40733
+ Next:&nbsp;<a rel="next" accesskey="n" href="#W1076">W1076</a>,
40734
+ Previous:&nbsp;<a rel="previous" accesskey="p" href="#W1074">W1074</a>,
40735
+ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
40736
+
40737
+ </div>
40738
+
40739
+ <h3 class="section">6.740 W1075</h3>
40740
+
40741
+ <p><a name="index-W1075-775"></a>
40742
+
40743
+ <h4 class="subsection">6.740.1 Message body</h4>
40744
+
40745
+ <p>This declaration has no `static' storage-class-specifier while the declaring object has internal-linkage.
40746
+
40747
+ <h4 class="subsection">6.740.2 Content</h4>
40748
+
40749
+ <p><b>This message will be supported in AdLint 2.0.0</b>
40750
+
40751
+ <p>Under construction.
40752
+
40753
+ <h4 class="subsection">6.740.3 Sample code</h4>
40754
+
40755
+ <pre class="verbatim">static int func(void);
40756
+ int func(void) /* W1075 */
40757
+ {
40758
+ ...
40759
+ }
40760
+ </pre>
40761
+
40762
+ <h4 class="subsection">6.740.4 Related message</h4>
40763
+
40764
+ <p>None.
40765
+
40766
+ <h4 class="subsection">6.740.5 Since</h4>
40767
+
40768
+ <p>2.0.0 (planned)
40769
+
40770
+ <div class="node">
40771
+ <a name="W1076"></a>
40772
+ <p><hr>
40773
+ Next:&nbsp;<a rel="next" accesskey="n" href="#W1077">W1077</a>,
40774
+ Previous:&nbsp;<a rel="previous" accesskey="p" href="#W1075">W1075</a>,
40775
+ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
40776
+
40777
+ </div>
40778
+
40779
+ <h3 class="section">6.741 W1076</h3>
40780
+
40781
+ <p><a name="index-W1076-776"></a>
40782
+
40783
+ <h4 class="subsection">6.741.1 Message body</h4>
40784
+
40785
+ <p>`%s' is defined as internal-linkage, but it has no forward declaration.
40786
+
40787
+ <h4 class="subsection">6.741.2 Content</h4>
40788
+
40789
+ <p><b>This message will be supported in AdLint 2.0.0</b>
40790
+
40791
+ <p>Under construction.
40792
+
40793
+ <h4 class="subsection">6.741.3 Sample code</h4>
40794
+
40795
+ <pre class="verbatim">static int func(void) /* W1076 */
40796
+ {
40797
+ ...
40798
+ return ret;
40799
+ }
40800
+ </pre>
40801
+
40802
+ <h4 class="subsection">6.741.4 Related message</h4>
40803
+
40804
+ <p>None.
40805
+
40806
+ <h4 class="subsection">6.741.5 Since</h4>
40807
+
40808
+ <p>2.0.0 (planned)
40809
+
40810
+ <div class="node">
40811
+ <a name="W1077"></a>
40812
+ <p><hr>
40813
+ Next:&nbsp;<a rel="next" accesskey="n" href="#W9001">W9001</a>,
40814
+ Previous:&nbsp;<a rel="previous" accesskey="p" href="#W1076">W1076</a>,
40815
+ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
40816
+
40817
+ </div>
40818
+
40819
+ <h3 class="section">6.742 W1077</h3>
40820
+
40821
+ <p><a name="index-W1077-777"></a>
40822
+
40823
+ <h4 class="subsection">6.742.1 Message body</h4>
40824
+
40825
+ <p>Declaring array object without a size.
40826
+
40827
+ <h4 class="subsection">6.742.2 Content</h4>
40828
+
40829
+ <p><b>This message will be supported in AdLint 2.0.0</b>
40830
+
40831
+ <p>Under construction.
40832
+
40833
+ <h4 class="subsection">6.742.3 Sample code</h4>
40834
+
40835
+ <pre class="verbatim">extern int array[]; /* W1077 */
40836
+ </pre>
40837
+
40838
+ <h4 class="subsection">6.742.4 Related message</h4>
40839
+
40840
+ <p>None.
40841
+
40842
+ <h4 class="subsection">6.742.5 Since</h4>
40843
+
40844
+ <p>2.0.0 (planned)
40845
+
40846
+ <div class="node">
40847
+ <a name="W9001"></a>
40848
+ <p><hr>
40849
+ Next:&nbsp;<a rel="next" accesskey="n" href="#W9002">W9002</a>,
40850
+ Previous:&nbsp;<a rel="previous" accesskey="p" href="#W1077">W1077</a>,
40851
+ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
40852
+
40853
+ </div>
40854
+
40855
+ <h3 class="section">6.743 W9001</h3>
40856
+
40857
+ <h4 class="subsection">6.743.1 Message body</h4>
40858
+
40859
+ <p>This statement doesn't reach the control.
40860
+
40861
+ <h4 class="subsection">6.743.2 Content</h4>
40862
+
40863
+ <p>Under construction.
40864
+
40865
+ <h4 class="subsection">6.743.3 Sample code</h4>
40866
+
40358
40867
  <pre class="verbatim">extern int all_possible_values_of_int(void);
40359
40868
  extern unsigned int zero_if_succeeded(void);
40360
40869
 
@@ -40390,81 +40899,125 @@ void func(void)
40390
40899
  }
40391
40900
  </pre>
40392
40901
 
40393
- <h4 class="subsection">6.731.4 Related message</h4>
40902
+ <h4 class="subsection">6.743.4 Related message</h4>
40394
40903
 
40395
40904
  <p>None.
40396
40905
 
40397
- <h4 class="subsection">6.731.5 Since</h4>
40906
+ <h4 class="subsection">6.743.5 Since</h4>
40398
40907
 
40399
40908
  <p>1.0.0
40400
40909
 
40401
40910
  <div class="node">
40402
40911
  <a name="W9002"></a>
40403
40912
  <p><hr>
40404
- Next:&nbsp;<a rel="next" accesskey="n" href="#C0001">C0001</a>,
40913
+ Next:&nbsp;<a rel="next" accesskey="n" href="#W9003">W9003</a>,
40405
40914
  Previous:&nbsp;<a rel="previous" accesskey="p" href="#W9001">W9001</a>,
40406
40915
  Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
40407
40916
 
40408
40917
  </div>
40409
40918
 
40410
- <h3 class="section">6.732 W9002</h3>
40919
+ <h3 class="section">6.744 W9002</h3>
40411
40920
 
40412
- <p><a name="index-W9002-766"></a>
40921
+ <p><a name="index-W9002-778"></a>
40413
40922
 
40414
- <h4 class="subsection">6.732.1 Message body</h4>
40923
+ <h4 class="subsection">6.744.1 Message body</h4>
40415
40924
 
40416
40925
  <p>There is no line feed character at the end of file.
40417
40926
 
40418
- <h4 class="subsection">6.732.2 Content</h4>
40927
+ <h4 class="subsection">6.744.2 Content</h4>
40419
40928
 
40420
40929
  <p>Under construction.
40421
40930
 
40422
- <h4 class="subsection">6.732.3 Sample code</h4>
40931
+ <h4 class="subsection">6.744.3 Sample code</h4>
40423
40932
 
40424
40933
  <p>Under construction.
40425
40934
 
40426
- <h4 class="subsection">6.732.4 Related message</h4>
40935
+ <h4 class="subsection">6.744.4 Related message</h4>
40427
40936
 
40428
40937
  <p>None.
40429
40938
 
40430
- <h4 class="subsection">6.732.5 Since</h4>
40939
+ <h4 class="subsection">6.744.5 Since</h4>
40431
40940
 
40432
40941
  <p>1.0.0
40433
40942
 
40434
40943
  <div class="node">
40435
- <a name="C0001"></a>
40944
+ <a name="W9003"></a>
40436
40945
  <p><hr>
40946
+ Next:&nbsp;<a rel="next" accesskey="n" href="#C0001">C0001</a>,
40437
40947
  Previous:&nbsp;<a rel="previous" accesskey="p" href="#W9002">W9002</a>,
40438
40948
  Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
40439
40949
 
40440
40950
  </div>
40441
40951
 
40442
- <h3 class="section">6.733 C0001</h3>
40952
+ <h3 class="section">6.745 W9003</h3>
40443
40953
 
40444
- <p><a name="index-C0001-767"></a>
40954
+ <p><a name="index-W9003-779"></a>
40445
40955
 
40446
- <h4 class="subsection">6.733.1 Message body</h4>
40956
+ <h4 class="subsection">6.745.1 Message body</h4>
40957
+
40958
+ <p>An object typed `%s' is implicitly converted into an object of other type.
40959
+
40960
+ <h4 class="subsection">6.745.2 Content</h4>
40961
+
40962
+ <p>This message indicates that an implicit conversion from or to an object of the
40963
+ non-standard type will occur.
40964
+
40965
+ <h4 class="subsection">6.745.3 Sample code</h4>
40966
+
40967
+ <pre class="verbatim">enum Color { RED, BLUE, GREEN };
40968
+ enum Fruit { APPLE, BANANA, ORANGE };
40969
+
40970
+ extern void foo(enum Color);
40971
+
40972
+ static void bar(void)
40973
+ {
40974
+ int i = RED; /* W9003 */
40975
+ foo(ORANGE); /* W9003 */
40976
+ }
40977
+ </pre>
40978
+
40979
+ <h4 class="subsection">6.745.4 Related message</h4>
40980
+
40981
+ <p>None.
40982
+
40983
+ <h4 class="subsection">6.745.5 Since</h4>
40984
+
40985
+ <p>1.12.0
40986
+
40987
+ <div class="node">
40988
+ <a name="C0001"></a>
40989
+ <p><hr>
40990
+ Previous:&nbsp;<a rel="previous" accesskey="p" href="#W9003">W9003</a>,
40991
+ Up:&nbsp;<a rel="up" accesskey="u" href="#Messages">Messages</a>
40992
+
40993
+ </div>
40994
+
40995
+ <h3 class="section">6.746 C0001</h3>
40996
+
40997
+ <p><a name="index-C0001-780"></a>
40998
+
40999
+ <h4 class="subsection">6.746.1 Message body</h4>
40447
41000
 
40448
41001
  <p>A warning is detected in external identifier name `%s'.
40449
41002
 
40450
- <h4 class="subsection">6.733.2 Content</h4>
41003
+ <h4 class="subsection">6.746.2 Content</h4>
40451
41004
 
40452
41005
  <p>Under construction.
40453
41006
 
40454
- <h4 class="subsection">6.733.3 Sample code</h4>
41007
+ <h4 class="subsection">6.746.3 Sample code</h4>
40455
41008
 
40456
41009
  <pre class="verbatim">int very_long_long_long_long_long_long_long_identifier_1 = 0; /* C0001 */
40457
41010
  int very_long_long_long_long_long_long_long_identifier_2 = 1; /* W0052 */
40458
41011
  </pre>
40459
41012
 
40460
- <h4 class="subsection">6.733.4 Related message</h4>
41013
+ <h4 class="subsection">6.746.4 Related message</h4>
40461
41014
 
40462
41015
  <ul>
40463
41016
  <li><a href="#W0051">W0051</a> An external identifier name cannot distinguish other identifier name (ex:`%s') from the range of number of characters defined in linker property.
40464
41017
  <li><a href="#W0052">W0052</a> A identifier name cannot distinguish other identifier name (ex:`%s') from the range of number of characters defined in compile property.
40465
41018
  </ul>
40466
41019
 
40467
- <h4 class="subsection">6.733.5 Since</h4>
41020
+ <h4 class="subsection">6.746.5 Since</h4>
40468
41021
 
40469
41022
  <p>1.0.0
40470
41023
 
@@ -40508,7 +41061,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Metrics">Metrics</a>
40508
41061
 
40509
41062
  <h3 class="section">7.1 FL_STMT</h3>
40510
41063
 
40511
- <p><a name="index-FL_005fSTMT-768"></a>
41064
+ <p><a name="index-FL_005fSTMT-781"></a>
40512
41065
 
40513
41066
  <h4 class="subsection">7.1.1 Metric name</h4>
40514
41067
 
@@ -40579,7 +41132,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Metrics">Metrics</a>
40579
41132
 
40580
41133
  <h3 class="section">7.2 FL_FUNC</h3>
40581
41134
 
40582
- <p><a name="index-FL_005fFUNC-769"></a>
41135
+ <p><a name="index-FL_005fFUNC-782"></a>
40583
41136
 
40584
41137
  <h4 class="subsection">7.2.1 Metric name</h4>
40585
41138
 
@@ -40624,7 +41177,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Metrics">Metrics</a>
40624
41177
 
40625
41178
  <h3 class="section">7.3 FN_STMT</h3>
40626
41179
 
40627
- <p><a name="index-FN_005fSTMT-770"></a>
41180
+ <p><a name="index-FN_005fSTMT-783"></a>
40628
41181
 
40629
41182
  <h4 class="subsection">7.3.1 Metric name</h4>
40630
41183
 
@@ -40696,7 +41249,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Metrics">Metrics</a>
40696
41249
 
40697
41250
  <h3 class="section">7.4 FN_UNRC</h3>
40698
41251
 
40699
- <p><a name="index-FN_005fUNRC-771"></a>
41252
+ <p><a name="index-FN_005fUNRC-784"></a>
40700
41253
 
40701
41254
  <h4 class="subsection">7.4.1 Metric name</h4>
40702
41255
 
@@ -40775,7 +41328,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Metrics">Metrics</a>
40775
41328
 
40776
41329
  <h3 class="section">7.5 FN_LINE</h3>
40777
41330
 
40778
- <p><a name="index-FN_005fLINE-772"></a>
41331
+ <p><a name="index-FN_005fLINE-785"></a>
40779
41332
 
40780
41333
  <h4 class="subsection">7.5.1 Metric name</h4>
40781
41334
 
@@ -40834,7 +41387,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Metrics">Metrics</a>
40834
41387
 
40835
41388
  <h3 class="section">7.6 FN_PARA</h3>
40836
41389
 
40837
- <p><a name="index-FN_005fPARA-773"></a>
41390
+ <p><a name="index-FN_005fPARA-786"></a>
40838
41391
 
40839
41392
  <h4 class="subsection">7.6.1 Metric name</h4>
40840
41393
 
@@ -40880,7 +41433,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Metrics">Metrics</a>
40880
41433
 
40881
41434
  <h3 class="section">7.7 FN_UNUV</h3>
40882
41435
 
40883
- <p><a name="index-FN_005fUNUV-774"></a>
41436
+ <p><a name="index-FN_005fUNUV-787"></a>
40884
41437
 
40885
41438
  <h4 class="subsection">7.7.1 Metric name</h4>
40886
41439
 
@@ -40930,7 +41483,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Metrics">Metrics</a>
40930
41483
 
40931
41484
  <h3 class="section">7.8 FN_CSUB</h3>
40932
41485
 
40933
- <p><a name="index-FN_005fCSUB-775"></a>
41486
+ <p><a name="index-FN_005fCSUB-788"></a>
40934
41487
 
40935
41488
  <h4 class="subsection">7.8.1 Metric name</h4>
40936
41489
 
@@ -41023,7 +41576,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Metrics">Metrics</a>
41023
41576
 
41024
41577
  <h3 class="section">7.10 FN_GOTO</h3>
41025
41578
 
41026
- <p><a name="index-FN_005fGOTO-776"></a>
41579
+ <p><a name="index-FN_005fGOTO-789"></a>
41027
41580
 
41028
41581
  <h4 class="subsection">7.10.1 Metric name</h4>
41029
41582
 
@@ -41074,7 +41627,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Metrics">Metrics</a>
41074
41627
 
41075
41628
  <h3 class="section">7.11 FN_RETN</h3>
41076
41629
 
41077
- <p><a name="index-FN_005fRETN-777"></a>
41630
+ <p><a name="index-FN_005fRETN-790"></a>
41078
41631
 
41079
41632
  <h4 class="subsection">7.11.1 Metric name</h4>
41080
41633
 
@@ -41147,7 +41700,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Metrics">Metrics</a>
41147
41700
 
41148
41701
  <h3 class="section">7.12 FN_UELS</h3>
41149
41702
 
41150
- <p><a name="index-FN_005fUELS-778"></a>
41703
+ <p><a name="index-FN_005fUELS-791"></a>
41151
41704
 
41152
41705
  <h4 class="subsection">7.12.1 Metric name</h4>
41153
41706
 
@@ -41207,7 +41760,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Metrics">Metrics</a>
41207
41760
 
41208
41761
  <h3 class="section">7.13 FN_NEST</h3>
41209
41762
 
41210
- <p><a name="index-FN_005fNEST-779"></a>
41763
+ <p><a name="index-FN_005fNEST-792"></a>
41211
41764
 
41212
41765
  <h4 class="subsection">7.13.1 Metric name</h4>
41213
41766
 
@@ -41278,7 +41831,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Metrics">Metrics</a>
41278
41831
 
41279
41832
  <h3 class="section">7.14 FN_PATH</h3>
41280
41833
 
41281
- <p><a name="index-FN_005fPATH-780"></a>
41834
+ <p><a name="index-FN_005fPATH-793"></a>
41282
41835
 
41283
41836
  <h4 class="subsection">7.14.1 Metric name</h4>
41284
41837
 
@@ -41435,7 +41988,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Metrics">Metrics</a>
41435
41988
 
41436
41989
  <h3 class="section">7.15 FN_CYCM</h3>
41437
41990
 
41438
- <p><a name="index-FN_005fCYCM-781"></a>
41991
+ <p><a name="index-FN_005fCYCM-794"></a>
41439
41992
 
41440
41993
  <h4 class="subsection">7.15.1 Metric name</h4>
41441
41994
 
@@ -41576,7 +42129,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
41576
42129
 
41577
42130
  <h3 class="section">8.1 VER</h3>
41578
42131
 
41579
- <p><a name="index-VER-782"></a>
42132
+ <p><a name="index-VER-795"></a>
41580
42133
 
41581
42134
  <h4 class="subsection">8.1.1 Code structure information name</h4>
41582
42135
 
@@ -41606,7 +42159,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
41606
42159
 
41607
42160
  <h3 class="section">8.2 DCL(T)</h3>
41608
42161
 
41609
- <p><a name="index-DCL_0028T_0029-783"></a>
42162
+ <p><a name="index-DCL_0028T_0029-796"></a>
41610
42163
 
41611
42164
  <h4 class="subsection">8.2.1 Code structure information name</h4>
41612
42165
 
@@ -41636,7 +42189,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
41636
42189
 
41637
42190
  <h3 class="section">8.3 DCL(V)</h3>
41638
42191
 
41639
- <p><a name="index-DCL_0028V_0029-784"></a>
42192
+ <p><a name="index-DCL_0028V_0029-797"></a>
41640
42193
 
41641
42194
  <h4 class="subsection">8.3.1 Code structure information name</h4>
41642
42195
 
@@ -41666,7 +42219,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
41666
42219
 
41667
42220
  <h3 class="section">8.4 DCL(F)</h3>
41668
42221
 
41669
- <p><a name="index-DCL_0028F_0029-785"></a>
42222
+ <p><a name="index-DCL_0028F_0029-798"></a>
41670
42223
 
41671
42224
  <h4 class="subsection">8.4.1 Code structure information name</h4>
41672
42225
 
@@ -41696,7 +42249,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
41696
42249
 
41697
42250
  <h3 class="section">8.5 DEF(V)</h3>
41698
42251
 
41699
- <p><a name="index-DEF_0028V_0029-786"></a>
42252
+ <p><a name="index-DEF_0028V_0029-799"></a>
41700
42253
 
41701
42254
  <h4 class="subsection">8.5.1 Code structure information name</h4>
41702
42255
 
@@ -41726,7 +42279,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
41726
42279
 
41727
42280
  <h3 class="section">8.6 DEF(F)</h3>
41728
42281
 
41729
- <p><a name="index-DEF_0028F_0029-787"></a>
42282
+ <p><a name="index-DEF_0028F_0029-800"></a>
41730
42283
 
41731
42284
  <h4 class="subsection">8.6.1 Code structure information name</h4>
41732
42285
 
@@ -41756,7 +42309,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
41756
42309
 
41757
42310
  <h3 class="section">8.7 DEF(M)</h3>
41758
42311
 
41759
- <p><a name="index-DEF_0028M_0029-788"></a>
42312
+ <p><a name="index-DEF_0028M_0029-801"></a>
41760
42313
 
41761
42314
  <h4 class="subsection">8.7.1 Code structure information name</h4>
41762
42315
 
@@ -41786,7 +42339,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
41786
42339
 
41787
42340
  <h3 class="section">8.8 DEF(L)</h3>
41788
42341
 
41789
- <p><a name="index-DEF_0028L_0029-789"></a>
42342
+ <p><a name="index-DEF_0028L_0029-802"></a>
41790
42343
 
41791
42344
  <h4 class="subsection">8.8.1 Code structure information name</h4>
41792
42345
 
@@ -41815,7 +42368,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
41815
42368
 
41816
42369
  <h3 class="section">8.9 INI</h3>
41817
42370
 
41818
- <p><a name="index-INI-790"></a>
42371
+ <p><a name="index-INI-803"></a>
41819
42372
 
41820
42373
  <h4 class="subsection">8.9.1 Code structure information name</h4>
41821
42374
 
@@ -41844,7 +42397,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
41844
42397
 
41845
42398
  <h3 class="section">8.10 ASN</h3>
41846
42399
 
41847
- <p><a name="index-ASN-791"></a>
42400
+ <p><a name="index-ASN-804"></a>
41848
42401
 
41849
42402
  <h4 class="subsection">8.10.1 Code structure information name</h4>
41850
42403
 
@@ -41874,7 +42427,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
41874
42427
 
41875
42428
  <h3 class="section">8.11 DEP(I)</h3>
41876
42429
 
41877
- <p><a name="index-DEP_0028I_0029-792"></a>
42430
+ <p><a name="index-DEP_0028I_0029-805"></a>
41878
42431
 
41879
42432
  <h4 class="subsection">8.11.1 Code structure information name</h4>
41880
42433
 
@@ -41904,7 +42457,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
41904
42457
 
41905
42458
  <h3 class="section">8.12 DEP(C)</h3>
41906
42459
 
41907
- <p><a name="index-DEP_0028C_0029-793"></a>
42460
+ <p><a name="index-DEP_0028C_0029-806"></a>
41908
42461
 
41909
42462
  <h4 class="subsection">8.12.1 Code structure information name</h4>
41910
42463
 
@@ -41934,7 +42487,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
41934
42487
 
41935
42488
  <h3 class="section">8.13 DEP(X)</h3>
41936
42489
 
41937
- <p><a name="index-DEP_0028X_0029-794"></a>
42490
+ <p><a name="index-DEP_0028X_0029-807"></a>
41938
42491
 
41939
42492
  <h4 class="subsection">8.13.1 Code structure information name</h4>
41940
42493
 
@@ -41963,7 +42516,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
41963
42516
 
41964
42517
  <h3 class="section">8.14 LIT</h3>
41965
42518
 
41966
- <p><a name="index-LIT-795"></a>
42519
+ <p><a name="index-LIT-808"></a>
41967
42520
 
41968
42521
  <h4 class="subsection">8.14.1 Code structure information name</h4>
41969
42522
 
@@ -41991,7 +42544,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#CodeStructures">CodeStructures</a>
41991
42544
 
41992
42545
  <h3 class="section">8.15 PRE</h3>
41993
42546
 
41994
- <p><a name="index-PRE-796"></a>
42547
+ <p><a name="index-PRE-809"></a>
41995
42548
 
41996
42549
  <h4 class="subsection">8.15.1 Code structure information name</h4>
41997
42550
 
@@ -42468,8 +43021,8 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Top">Top</a>
42468
43021
  <h2 class="unnumbered">Index</h2>
42469
43022
 
42470
43023
  <ul class="index-cp" compact>
42471
- <li><a href="#index-ASN-791">ASN</a>: <a href="#ASN">ASN</a></li>
42472
- <li><a href="#index-C0001-767">C0001</a>: <a href="#C0001">C0001</a></li>
43024
+ <li><a href="#index-ASN-804">ASN</a>: <a href="#ASN">ASN</a></li>
43025
+ <li><a href="#index-C0001-780">C0001</a>: <a href="#C0001">C0001</a></li>
42473
43026
  <li><a href="#index-compiler_005ftraits-9">compiler_traits</a>: <a href="#Compiler-Traits">Compiler Traits</a></li>
42474
43027
  <li><a href="#index-compiler_005ftraits_003aarbitrary_005fsubstitution-35">compiler_traits:arbitrary_substitution</a>: <a href="#Compiler-Traits">Compiler Traits</a></li>
42475
43028
  <li><a href="#index-compiler_005ftraits_003aarithmetic_003alogical_005fright_005fshift-33">compiler_traits:arithmetic:logical_right_shift</a>: <a href="#Compiler-Traits">Compiler Traits</a></li>
@@ -42498,16 +43051,16 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Top">Top</a>
42498
43051
  <li><a href="#index-compiler_005ftraits_003astandard_005ftype_003along_005fsize-17">compiler_traits:standard_type:long_size</a>: <a href="#Compiler-Traits">Compiler Traits</a></li>
42499
43052
  <li><a href="#index-compiler_005ftraits_003astandard_005ftype_003ashort_005falignment-14">compiler_traits:standard_type:short_alignment</a>: <a href="#Compiler-Traits">Compiler Traits</a></li>
42500
43053
  <li><a href="#index-compiler_005ftraits_003astandard_005ftype_003ashort_005fsize-13">compiler_traits:standard_type:short_size</a>: <a href="#Compiler-Traits">Compiler Traits</a></li>
42501
- <li><a href="#index-DCL_0028F_0029-785">DCL(F)</a>: <a href="#DCL_0028F_0029">DCL(F)</a></li>
42502
- <li><a href="#index-DCL_0028T_0029-783">DCL(T)</a>: <a href="#DCL_0028T_0029">DCL(T)</a></li>
42503
- <li><a href="#index-DCL_0028V_0029-784">DCL(V)</a>: <a href="#DCL_0028V_0029">DCL(V)</a></li>
42504
- <li><a href="#index-DEF_0028F_0029-787">DEF(F)</a>: <a href="#DEF_0028F_0029">DEF(F)</a></li>
42505
- <li><a href="#index-DEF_0028L_0029-789">DEF(L)</a>: <a href="#DEF_0028L_0029">DEF(L)</a></li>
42506
- <li><a href="#index-DEF_0028M_0029-788">DEF(M)</a>: <a href="#DEF_0028M_0029">DEF(M)</a></li>
42507
- <li><a href="#index-DEF_0028V_0029-786">DEF(V)</a>: <a href="#DEF_0028V_0029">DEF(V)</a></li>
42508
- <li><a href="#index-DEP_0028C_0029-793">DEP(C)</a>: <a href="#DEP_0028C_0029">DEP(C)</a></li>
42509
- <li><a href="#index-DEP_0028I_0029-792">DEP(I)</a>: <a href="#DEP_0028I_0029">DEP(I)</a></li>
42510
- <li><a href="#index-DEP_0028X_0029-794">DEP(X)</a>: <a href="#DEP_0028X_0029">DEP(X)</a></li>
43054
+ <li><a href="#index-DCL_0028F_0029-798">DCL(F)</a>: <a href="#DCL_0028F_0029">DCL(F)</a></li>
43055
+ <li><a href="#index-DCL_0028T_0029-796">DCL(T)</a>: <a href="#DCL_0028T_0029">DCL(T)</a></li>
43056
+ <li><a href="#index-DCL_0028V_0029-797">DCL(V)</a>: <a href="#DCL_0028V_0029">DCL(V)</a></li>
43057
+ <li><a href="#index-DEF_0028F_0029-800">DEF(F)</a>: <a href="#DEF_0028F_0029">DEF(F)</a></li>
43058
+ <li><a href="#index-DEF_0028L_0029-802">DEF(L)</a>: <a href="#DEF_0028L_0029">DEF(L)</a></li>
43059
+ <li><a href="#index-DEF_0028M_0029-801">DEF(M)</a>: <a href="#DEF_0028M_0029">DEF(M)</a></li>
43060
+ <li><a href="#index-DEF_0028V_0029-799">DEF(V)</a>: <a href="#DEF_0028V_0029">DEF(V)</a></li>
43061
+ <li><a href="#index-DEP_0028C_0029-806">DEP(C)</a>: <a href="#DEP_0028C_0029">DEP(C)</a></li>
43062
+ <li><a href="#index-DEP_0028I_0029-805">DEP(I)</a>: <a href="#DEP_0028I_0029">DEP(I)</a></li>
43063
+ <li><a href="#index-DEP_0028X_0029-807">DEP(X)</a>: <a href="#DEP_0028X_0029">DEP(X)</a></li>
42511
43064
  <li><a href="#index-E0004-47">E0004</a>: <a href="#E0004">E0004</a></li>
42512
43065
  <li><a href="#index-E0007-48">E0007</a>: <a href="#E0007">E0007</a></li>
42513
43066
  <li><a href="#index-E0008-49">E0008</a>: <a href="#E0008">E0008</a></li>
@@ -42517,29 +43070,29 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Top">Top</a>
42517
43070
  <li><a href="#index-E0014-53">E0014</a>: <a href="#E0014">E0014</a></li>
42518
43071
  <li><a href="#index-E0015-54">E0015</a>: <a href="#E0015">E0015</a></li>
42519
43072
  <li><a href="#index-E0016-55">E0016</a>: <a href="#E0016">E0016</a></li>
42520
- <li><a href="#index-FL_005fFUNC-769">FL_FUNC</a>: <a href="#FL_005fFUNC">FL_FUNC</a></li>
42521
- <li><a href="#index-FL_005fSTMT-768">FL_STMT</a>: <a href="#FL_005fSTMT">FL_STMT</a></li>
42522
- <li><a href="#index-FN_005fCSUB-775">FN_CSUB</a>: <a href="#FN_005fCSUB">FN_CSUB</a></li>
42523
- <li><a href="#index-FN_005fCYCM-781">FN_CYCM</a>: <a href="#FN_005fCYCM">FN_CYCM</a></li>
42524
- <li><a href="#index-FN_005fGOTO-776">FN_GOTO</a>: <a href="#FN_005fGOTO">FN_GOTO</a></li>
42525
- <li><a href="#index-FN_005fLINE-772">FN_LINE</a>: <a href="#FN_005fLINE">FN_LINE</a></li>
42526
- <li><a href="#index-FN_005fNEST-779">FN_NEST</a>: <a href="#FN_005fNEST">FN_NEST</a></li>
42527
- <li><a href="#index-FN_005fPARA-773">FN_PARA</a>: <a href="#FN_005fPARA">FN_PARA</a></li>
42528
- <li><a href="#index-FN_005fPATH-780">FN_PATH</a>: <a href="#FN_005fPATH">FN_PATH</a></li>
42529
- <li><a href="#index-FN_005fRETN-777">FN_RETN</a>: <a href="#FN_005fRETN">FN_RETN</a></li>
42530
- <li><a href="#index-FN_005fSTMT-770">FN_STMT</a>: <a href="#FN_005fSTMT">FN_STMT</a></li>
42531
- <li><a href="#index-FN_005fUELS-778">FN_UELS</a>: <a href="#FN_005fUELS">FN_UELS</a></li>
42532
- <li><a href="#index-FN_005fUNRC-771">FN_UNRC</a>: <a href="#FN_005fUNRC">FN_UNRC</a></li>
42533
- <li><a href="#index-FN_005fUNUV-774">FN_UNUV</a>: <a href="#FN_005fUNUV">FN_UNUV</a></li>
42534
- <li><a href="#index-INI-790">INI</a>: <a href="#INI">INI</a></li>
43073
+ <li><a href="#index-FL_005fFUNC-782">FL_FUNC</a>: <a href="#FL_005fFUNC">FL_FUNC</a></li>
43074
+ <li><a href="#index-FL_005fSTMT-781">FL_STMT</a>: <a href="#FL_005fSTMT">FL_STMT</a></li>
43075
+ <li><a href="#index-FN_005fCSUB-788">FN_CSUB</a>: <a href="#FN_005fCSUB">FN_CSUB</a></li>
43076
+ <li><a href="#index-FN_005fCYCM-794">FN_CYCM</a>: <a href="#FN_005fCYCM">FN_CYCM</a></li>
43077
+ <li><a href="#index-FN_005fGOTO-789">FN_GOTO</a>: <a href="#FN_005fGOTO">FN_GOTO</a></li>
43078
+ <li><a href="#index-FN_005fLINE-785">FN_LINE</a>: <a href="#FN_005fLINE">FN_LINE</a></li>
43079
+ <li><a href="#index-FN_005fNEST-792">FN_NEST</a>: <a href="#FN_005fNEST">FN_NEST</a></li>
43080
+ <li><a href="#index-FN_005fPARA-786">FN_PARA</a>: <a href="#FN_005fPARA">FN_PARA</a></li>
43081
+ <li><a href="#index-FN_005fPATH-793">FN_PATH</a>: <a href="#FN_005fPATH">FN_PATH</a></li>
43082
+ <li><a href="#index-FN_005fRETN-790">FN_RETN</a>: <a href="#FN_005fRETN">FN_RETN</a></li>
43083
+ <li><a href="#index-FN_005fSTMT-783">FN_STMT</a>: <a href="#FN_005fSTMT">FN_STMT</a></li>
43084
+ <li><a href="#index-FN_005fUELS-791">FN_UELS</a>: <a href="#FN_005fUELS">FN_UELS</a></li>
43085
+ <li><a href="#index-FN_005fUNRC-784">FN_UNRC</a>: <a href="#FN_005fUNRC">FN_UNRC</a></li>
43086
+ <li><a href="#index-FN_005fUNUV-787">FN_UNUV</a>: <a href="#FN_005fUNUV">FN_UNUV</a></li>
43087
+ <li><a href="#index-INI-803">INI</a>: <a href="#INI">INI</a></li>
42535
43088
  <li><a href="#index-linker_005ftraits-37">linker_traits</a>: <a href="#Linker-Traits">Linker Traits</a></li>
42536
43089
  <li><a href="#index-linker_005ftraits_003aidentifier_005fignore_005fcase-39">linker_traits:identifier_ignore_case</a>: <a href="#Linker-Traits">Linker Traits</a></li>
42537
43090
  <li><a href="#index-linker_005ftraits_003aidentifier_005fmax-38">linker_traits:identifier_max</a>: <a href="#Linker-Traits">Linker Traits</a></li>
42538
- <li><a href="#index-LIT-795">LIT</a>: <a href="#LIT">LIT</a></li>
43091
+ <li><a href="#index-LIT-808">LIT</a>: <a href="#LIT">LIT</a></li>
42539
43092
  <li><a href="#index-message_005ftraits-40">message_traits</a>: <a href="#Message-Traits">Message Traits</a></li>
42540
43093
  <li><a href="#index-message_005ftraits_003achange_005flist-42">message_traits:change_list</a>: <a href="#Message-Traits">Message Traits</a></li>
42541
43094
  <li><a href="#index-message_005ftraits_003alanguage-41">message_traits:language</a>: <a href="#Message-Traits">Message Traits</a></li>
42542
- <li><a href="#index-PRE-796">PRE</a>: <a href="#PRE">PRE</a></li>
43095
+ <li><a href="#index-PRE-809">PRE</a>: <a href="#PRE">PRE</a></li>
42543
43096
  <li><a href="#index-project_005ftraits-1">project_traits</a>: <a href="#Project-Traits">Project Traits</a></li>
42544
43097
  <li><a href="#index-project_005ftraits_003acoding_005fstyle_003aindent_005fstyle-5">project_traits:coding_style:indent_style</a>: <a href="#Project-Traits">Project Traits</a></li>
42545
43098
  <li><a href="#index-project_005ftraits_003acoding_005fstyle_003aindent_005fwidth-7">project_traits:coding_style:indent_width</a>: <a href="#Project-Traits">Project Traits</a></li>
@@ -42548,7 +43101,7 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Top">Top</a>
42548
43101
  <li><a href="#index-project_005ftraits_003ainclude_005fpath-3">project_traits:include_path</a>: <a href="#Project-Traits">Project Traits</a></li>
42549
43102
  <li><a href="#index-project_005ftraits_003ainitial_005fheader-4">project_traits:initial_header</a>: <a href="#Project-Traits">Project Traits</a></li>
42550
43103
  <li><a href="#index-project_005ftraits_003aproject_005fname-2">project_traits:project_name</a>: <a href="#Project-Traits">Project Traits</a></li>
42551
- <li><a href="#index-VER-782">VER</a>: <a href="#VER">VER</a></li>
43104
+ <li><a href="#index-VER-795">VER</a>: <a href="#VER">VER</a></li>
42552
43105
  <li><a href="#index-W0001-56">W0001</a>: <a href="#W0001">W0001</a></li>
42553
43106
  <li><a href="#index-W0002-57">W0002</a>: <a href="#W0002">W0002</a></li>
42554
43107
  <li><a href="#index-W0003-58">W0003</a>: <a href="#W0003">W0003</a></li>
@@ -43259,7 +43812,20 @@ Up:&nbsp;<a rel="up" accesskey="u" href="#Top">Top</a>
43259
43812
  <li><a href="#index-W1063-763">W1063</a>: <a href="#W1063">W1063</a></li>
43260
43813
  <li><a href="#index-W1064-764">W1064</a>: <a href="#W1064">W1064</a></li>
43261
43814
  <li><a href="#index-W1065-765">W1065</a>: <a href="#W1065">W1065</a></li>
43262
- <li><a href="#index-W9002-766">W9002</a>: <a href="#W9002">W9002</a></li>
43815
+ <li><a href="#index-W1066-766">W1066</a>: <a href="#W1066">W1066</a></li>
43816
+ <li><a href="#index-W1067-767">W1067</a>: <a href="#W1067">W1067</a></li>
43817
+ <li><a href="#index-W1068-768">W1068</a>: <a href="#W1068">W1068</a></li>
43818
+ <li><a href="#index-W1069-769">W1069</a>: <a href="#W1069">W1069</a></li>
43819
+ <li><a href="#index-W1070-770">W1070</a>: <a href="#W1070">W1070</a></li>
43820
+ <li><a href="#index-W1071-771">W1071</a>: <a href="#W1071">W1071</a></li>
43821
+ <li><a href="#index-W1072-772">W1072</a>: <a href="#W1072">W1072</a></li>
43822
+ <li><a href="#index-W1073-773">W1073</a>: <a href="#W1073">W1073</a></li>
43823
+ <li><a href="#index-W1074-774">W1074</a>: <a href="#W1074">W1074</a></li>
43824
+ <li><a href="#index-W1075-775">W1075</a>: <a href="#W1075">W1075</a></li>
43825
+ <li><a href="#index-W1076-776">W1076</a>: <a href="#W1076">W1076</a></li>
43826
+ <li><a href="#index-W1077-777">W1077</a>: <a href="#W1077">W1077</a></li>
43827
+ <li><a href="#index-W9002-778">W9002</a>: <a href="#W9002">W9002</a></li>
43828
+ <li><a href="#index-W9003-779">W9003</a>: <a href="#W9003">W9003</a></li>
43263
43829
  <li><a href="#index-X0001-43">X0001</a>: <a href="#X0001">X0001</a></li>
43264
43830
  <li><a href="#index-X0002-44">X0002</a>: <a href="#X0002">X0002</a></li>
43265
43831
  <li><a href="#index-X0003-45">X0003</a>: <a href="#X0003">X0003</a></li>