| commit | 223de262b93b2a720638c07fa7364dcaa7c56039 | [log] [tgz] |
|---|---|---|
| author | Reid Kleckner <reid@kleckner.net> | Tue Apr 14 20:38:14 2015 +0000 |
| committer | Reid Kleckner <reid@kleckner.net> | Tue Apr 14 20:38:14 2015 +0000 |
| tree | a78edc7f54861b36cf67749273bf24b14188be3d | |
| parent | 16d8e44da56335664599f6f6c97e0f35f7313193 [diff] |
[Inliner] Don't inline functions with frameescape calls Inlining such intrinsics is very difficult, since you need to simultaneously transform many calls to llvm.framerecover and potentially duplicate the functions containing them. Normally this intrinsic isn't added until EH preparation, which is part of the backend pass pipeline after inlining. However, if it were to get fed through the inliner, this change will ensure that it doesn't break the code. llvm-svn: 234937