summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/bug642198.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/jit-test/tests/jaeger/bug642198.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/jaeger/bug642198.js b/js/src/jit-test/tests/jaeger/bug642198.js
new file mode 100644
index 0000000000..dec6e7294f
--- /dev/null
+++ b/js/src/jit-test/tests/jaeger/bug642198.js
@@ -0,0 +1,9 @@
+
+function test() {
+ for(var e=1.2; true; e=20.2) {
+ if (e > 10)
+ break;
+ }
+}
+test();
+