diff options
| author | David Majnemer <david.majnemer@gmail.com> | 2016-04-27 19:36:38 +0000 |
|---|---|---|
| committer | David Majnemer <david.majnemer@gmail.com> | 2016-04-27 19:36:38 +0000 |
| commit | 0c80e2eac64d6f25e522079632de8bf4d201b459 (patch) | |
| tree | 1373bc141bb24664f9fa9511e3b983943387d9c0 /llvm/lib | |
| parent | 1b60168576e7b48e500d52a215ac648b539678e3 (diff) | |
| download | bcm5719-llvm-0c80e2eac64d6f25e522079632de8bf4d201b459.tar.gz bcm5719-llvm-0c80e2eac64d6f25e522079632de8bf4d201b459.zip | |
[CodeGenPrepare] Don't sink a cast past its user
The sink cast machinery is supposed to sink casts as close to their user
as possible. However, an EH pad is the first instruction in it's basic
block. Don't sink if the user is an EH pad.
This fixes PR27536.
llvm-svn: 267767
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/CodeGen/CodeGenPrepare.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/CodeGenPrepare.cpp b/llvm/lib/CodeGen/CodeGenPrepare.cpp index 3adad3b3b9d..b5ffbeb3dec 100644 --- a/llvm/lib/CodeGen/CodeGenPrepare.cpp +++ b/llvm/lib/CodeGen/CodeGenPrepare.cpp @@ -758,6 +758,11 @@ static bool SinkCast(CastInst *CI) { // Preincrement use iterator so we don't invalidate it. ++UI; + // The first insertion point of a block containing an EH pad is after the + // pad. If the pad is the user, we cannot sink the cast past the pad. + if (User->isEHPad()) + continue; + // If the block selected to receive the cast is an EH pad that does not // allow non-PHI instructions before the terminator, we can't sink the // cast. |

