summaryrefslogtreecommitdiff
path: root/js/src/jit-test/tests/jaeger/bug597378.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/jaeger/bug597378.js')
-rw-r--r--js/src/jit-test/tests/jaeger/bug597378.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/jaeger/bug597378.js b/js/src/jit-test/tests/jaeger/bug597378.js
new file mode 100644
index 0000000..454935b
--- /dev/null
+++ b/js/src/jit-test/tests/jaeger/bug597378.js
@@ -0,0 +1,12 @@
+// vim: set ts=4 sw=4 tw=99 et:
+function f(a, b) {
+ var o = a;
+ var q = b;
+ var p;
+ do { } while (0);
+ p = o;
+ q = p + 1 < q ? p + 1 : 0;
+ assertEq(q, 0);
+}
+f(3, 4);
+