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 /lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp | |
parent | 7cf2a04361e8613264498e50babe52d65c070473 (diff) |
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 'lib/CodeGen/AsmPrinter/DwarfCompileUnit.cpp')
0 files changed, 0 insertions, 0 deletions