summaryrefslogtreecommitdiff
path: root/js/src/jit-test/tests/jaeger/bug601982.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/jaeger/bug601982.js')
-rw-r--r--js/src/jit-test/tests/jaeger/bug601982.js33
1 files changed, 33 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/jaeger/bug601982.js b/js/src/jit-test/tests/jaeger/bug601982.js
new file mode 100644
index 0000000..b874444
--- /dev/null
+++ b/js/src/jit-test/tests/jaeger/bug601982.js
@@ -0,0 +1,33 @@
+/* vim: set ts=4 sw=4 tw=99 et: */
+
+function J(i) {
+ /* Cause a branch to build. */
+ if (i % 3)
+ <xml></xml>
+}
+
+function h(i) {
+ J(i);
+
+ /* Generate a safe point in the method JIT. */
+ if (1 == 14) { eval(); }
+
+ return J(i);
+}
+
+function g(i) {
+ /* Method JIT will try to remove this frame. */
+ if (i == 14) { <xml></xml> }
+ return h(i);
+}
+
+function f() {
+ for (var i = 0; i < RUNLOOP * 2; i++) {
+ g(i);
+ }
+}
+
+f();
+
+/* Don't crash. */
+