After fixing llvm if-conversion, we can reduce stack to 1MB.

Change-Id: Ia5b1995363fa79a14520c6ce54a28465f735463d
diff --git a/src/compiler.cc b/src/compiler.cc
index 5389127..bf19960 100644
--- a/src/compiler.cc
+++ b/src/compiler.cc
@@ -1261,7 +1261,7 @@
     if (spawn_) {
       pthread_attr_t attr;
       CHECK_PTHREAD_CALL(pthread_attr_init, (&attr), "new compiler worker thread");
-      CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, 8*MB), "new compiler worker thread");
+      CHECK_PTHREAD_CALL(pthread_attr_setstacksize, (&attr, 1*MB), "new compiler worker thread");
       CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Go, this), "new compiler worker thread");
       CHECK_PTHREAD_CALL(pthread_attr_destroy, (&attr), "new compiler worker thread");
     }