[ARM] ARMLoadStoreOpt::UpdateBaseRegUses should stop on def
authorJohn Brawn <john.brawn@arm.com>
Tue, 23 Jun 2015 16:02:11 +0000 (16:02 +0000)
committerJohn Brawn <john.brawn@arm.com>
Tue, 23 Jun 2015 16:02:11 +0000 (16:02 +0000)
commita99d1c85a8c99a64b6d9d3002f1ba37e79d51b11
tree5abce7bd0f341e3b1a55cce22343281717337869
parentbd1e605b5c8d11291800494eaa9f508193c943f5
[ARM] ARMLoadStoreOpt::UpdateBaseRegUses should stop on def

When UpdateBaseRegUses sees an instruction that defines the base
register it must stop, as the base register value it is updating is no
longer live. Ideally we would already have seen the register be killed
(which is already checked for), but the kill flags may be inaccurate
and we have to account for this.

Differential Revision: http://reviews.llvm.org/D10566

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@240424 91177308-0d34-0410-b5e6-96231b3b80d8
lib/Target/ARM/ARMLoadStoreOptimizer.cpp