summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/inline/scripted-08.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/jaeger/inline/scripted-08.js')
-rw-r--r--js/src/jit-test/tests/jaeger/inline/scripted-08.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/jaeger/inline/scripted-08.js b/js/src/jit-test/tests/jaeger/inline/scripted-08.js
new file mode 100644
index 0000000000..22198388ef
--- /dev/null
+++ b/js/src/jit-test/tests/jaeger/inline/scripted-08.js
@@ -0,0 +1,21 @@
+function first(a, b) {
+ return second(a, b);
+}
+
+function second(a, b) {
+ return third(a, b, a + b);
+}
+
+function third(a, b, c) {
+ return a + b + c;
+}
+
+function foo(x) {
+ var a = 0;
+ for (var i = 0; i < 100; i++)
+ a += first(x, i);
+ return a;
+}
+
+var q = foo(10);
+assertEq(q, 11900);