summaryrefslogtreecommitdiff
path: root/tests/src/JIT/jit64/regress/vsw/528315/simple-repro.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/JIT/jit64/regress/vsw/528315/simple-repro.cs')
-rw-r--r--tests/src/JIT/jit64/regress/vsw/528315/simple-repro.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/JIT/jit64/regress/vsw/528315/simple-repro.cs b/tests/src/JIT/jit64/regress/vsw/528315/simple-repro.cs
index fa5258f082..02253e2e1f 100644
--- a/tests/src/JIT/jit64/regress/vsw/528315/simple-repro.cs
+++ b/tests/src/JIT/jit64/regress/vsw/528315/simple-repro.cs
@@ -28,7 +28,7 @@ internal class NodeFactory
case NodeType.Not:
return this.Conditional(condition.Child, falseBranch, trueBranch); // <-- tail recursion
}
- return falseBranch; //<- should return the orignal trueBranch
+ return falseBranch; //<- should return the original trueBranch
}
private class Test