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
is the line number where the branch is found - and is expected to to be a non-zero integer.
1399
+
is the line number where the branch is found - and is expected to be a non-zero integer.
1400
1400
.br
1401
1401
.I<block>
1402
1402
and
@@ -1412,9 +1412,9 @@ is a string which serves to uniquely identify a particular edge. For some langu
1412
1412
.I<branch>
1413
1413
is an ordered integer index related to expression tree traversal order of the associated conditional. For others, it may be a meaningful string - see below.
1414
1414
.I<branch>
1415
-
appears in the 'tooltip' popup of the asognciated branch in the
1415
+
appears in the 'tooltip' popup of the associated branch in the
1416
1416
.Bgenhtml
1417
-
output - so human-readable values are helpful to users who are trying to understand coveage results.
1417
+
output - so human-readable values are helpful to users who are trying to understand coverage results.
1418
1418
.br
1419
1419
.I<taken>
1420
1420
is either '-' if the corresponding expression was never evaluated (e.g., the basic block containing the branch was never executed) or
@@ -1424,7 +1424,7 @@ a number indicating how often that branch was taken.
1424
1424
is 'e' (single character) if this is a branch related to exception handling - and is not present if the branch is not related to exceptions.
1425
1425
Exception branch identification requires compiler support; note that gcc versions older than 9 do not differentiate exception branches. Geninfo will be able to identify exception branches only if your toolchain version is new enough to support the feature.
1426
1426
1427
-
The following is an example branch records whose
1427
+
The following are example branch records whose
1428
1428
.I<branch>
1429
1429
expression values are human-readable strings.
1430
1430
@@ -1443,7 +1443,7 @@ In this case, the corresponding code from line 10 is very likely similar to:
1443
1443
}
1444
1444
.br
1445
1445
.RE
1446
-
such that associated testcase entered the block ('enable' evaluated to 'true').
1446
+
such that the associated testcase entered the block ('enable' evaluated to 'true').
1447
1447
1448
1448
Arbitrarily complicated branch expressions are supported - including branch expressions which contain commas (e.g., in an expression containing a function call).
0 commit comments