C++: Fix typos in tests

This commit is contained in:
Simon Friis Vindum
2025-10-24 16:04:34 +02:00
parent 17e0dec08a
commit 3af9885489

View File

@@ -914,7 +914,7 @@ void guard_with_exit(int x, int y) {
// This test ensures that we correctly identify
// that the upper bound for y is max_int when calling `out(y)`.
// The RangeSsa will place guardPhy on `out(y)`, and consequently there is no
// The RangeSsa will place guardPhi on `out(y)`, and consequently there is no
// frontier phi node at out(y).
}
@@ -922,7 +922,7 @@ void test(int x) {
if (x >= 10) {
return;
}
// The basic below has two predecessors.
// The basic block below has two predecessors.
label:
out(x);
goto label;