diff options
author | Andrew Trick <atrick@apple.com> | 2011-11-17 23:36:35 +0000 |
---|---|---|
committer | Andrew Trick <atrick@apple.com> | 2011-11-17 23:36:35 +0000 |
commit | 4f3052403ca5ea9542a118c2e54ff9c82038f41c (patch) | |
tree | 1dd30660130db7eec9772488e057b352767226cb /test/TableGen/String.td | |
parent | 7cf2a04361e8613264498e50babe52d65c070473 (diff) | |
download | external_llvm-4f3052403ca5ea9542a118c2e54ff9c82038f41c.zip external_llvm-4f3052403ca5ea9542a118c2e54ff9c82038f41c.tar.gz external_llvm-4f3052403ca5ea9542a118c2e54ff9c82038f41c.tar.bz2 |
Fix an overly general check in SimplifyIndvar to handle useless phi cycles.
The right way to check for a binary operation is
cast<BinaryOperator>. The original check: cast<Instruction> &&
numOperands() == 2 would match phi "instructions", leading to an
infinite loop in extreme corner case: a useless phi with operands
[self, constant] that prior optimization passes failed to remove,
being used in the loop by another useless phi, in turn being used by an
lshr or udiv.
Fixes PR11350: runaway iteration assertion.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144935 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/TableGen/String.td')
0 files changed, 0 insertions, 0 deletions