Skip to content

Commit 3af9885

Browse files
committed
C++: Fix typos in tests
1 parent 17e0dec commit 3af9885

File tree

1 file changed

+2
-2
lines changed
  • cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis

1 file changed

+2
-2
lines changed

cpp/ql/test/library-tests/rangeanalysis/SimpleRangeAnalysis/test.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -914,15 +914,15 @@ void guard_with_exit(int x, int y) {
914914

915915
// This test ensures that we correctly identify
916916
// that the upper bound for y is max_int when calling `out(y)`.
917-
// The RangeSsa will place guardPhy on `out(y)`, and consequently there is no
917+
// The RangeSsa will place guardPhi on `out(y)`, and consequently there is no
918918
// frontier phi node at out(y).
919919
}
920920

921921
void test(int x) {
922922
if (x >= 10) {
923923
return;
924924
}
925-
// The basic below has two predecessors.
925+
// The basic block below has two predecessors.
926926
label:
927927
out(x);
928928
goto label;

0 commit comments

Comments
 (0)