| commit | 4eb3d4b2cf29a7fde84409833fbdb6e679992603 | [log] [tgz] |
|---|---|---|
| author | Nadav Rotem <nrotem@apple.com> | Wed Sep 19 08:08:04 2012 +0000 |
| committer | Nadav Rotem <nrotem@apple.com> | Wed Sep 19 08:08:04 2012 +0000 |
| tree | b3a3641ae68df33debee9c8a2ddedcde985f0d76 | |
| parent | 02fbc716479de79f4449ea021b60208017829d74 [diff] |
Prevent inlining of callees which allocate lots of memory into a recursive caller.
Example:
void foo() {
... foo(); // I'm recursive!
bar();
}
bar() { int a[1000]; // large stack size }
rdar://10853263
llvm-svn: 164207