tnfchris added inline comments.
Comment at: clang/lib/Driver/ToolChains/Clang.cpp:3460
+ } else if (EffectiveTriple.isArm() || EffectiveTriple.isThumb()) {
+CmdArgs.push_back("-mstack-probe-size=1024");
+ }
efriedma wrote:
> Why 1024?
1024 was experimentall
tnfchris added inline comments.
Comment at: clang/lib/Driver/ToolChains/Clang.cpp:3460
+ } else if (EffectiveTriple.isArm() || EffectiveTriple.isThumb()) {
+CmdArgs.push_back("-mstack-probe-size=1024");
+ }
efriedma wrote:
> tnfchris wrote:
> > efriedma wro