Skip to content

Commit

Permalink
Increase the stack size of the compiler thread to 32MB
Browse files Browse the repository at this point in the history
-------------
Created by MOE: https://github.com/google/moe
MOE_MIGRATED_REVID=163536761
  • Loading branch information
Dominator008 authored and blickly committed Jul 31, 2017
1 parent 4776b6d commit a5b8c5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/com/google/javascript/jscomp/CompilerExecutor.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
class CompilerExecutor {
// We use many recursive algorithms that use O(d) memory in the depth
// of the tree.
private static final long COMPILER_STACK_SIZE = (1 << 24); // About 16MB
private static final long COMPILER_STACK_SIZE = (1 << 25); // About 32MB

/**
* Use a dedicated compiler thread per Compiler instance.
Expand Down

0 comments on commit a5b8c5f

Please sign in to comment.