summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/ion/bug1054241.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/ion/bug1054241.js')
-rw-r--r--js/src/jit-test/tests/ion/bug1054241.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/ion/bug1054241.js b/js/src/jit-test/tests/ion/bug1054241.js
new file mode 100644
index 0000000000..7c0cf0a26e
--- /dev/null
+++ b/js/src/jit-test/tests/ion/bug1054241.js
@@ -0,0 +1,12 @@
+setJitCompilerOption("baseline.warmup.trigger", 10);
+setJitCompilerOption("ion.warmup.trigger", 20);
+
+enableShellAllocationMetadataBuilder();
+(function(){
+ for(var i = 0; i < 100; i++) {
+ try{
+ var a = new Array(5);
+ throw 1;
+ } catch(e) {}
+ }
+})();