]> granicus.if.org Git - llvm/commit
Merging r309930:
authorHans Wennborg <hans@hanshq.net>
Thu, 3 Aug 2017 16:24:57 +0000 (16:24 +0000)
committerHans Wennborg <hans@hanshq.net>
Thu, 3 Aug 2017 16:24:57 +0000 (16:24 +0000)
commitf632da1f7934a284b1cb0bcdff2d93bea6631c17
tree0d0a432fd5fc2cffc89c02e7f8f4e51c566a2934
parent6db41ec7eed260c38c6fdfc9b9113c7917bc3caa
Merging r309930:
------------------------------------------------------------------------
r309930 | sdardis | 2017-08-03 02:38:46 -0700 (Thu, 03 Aug 2017) | 19 lines

[SelectionDAG] Resolve PR33978.

rL306209 taught SelectionDAG how to add the dereferenceable flag when
expanding memcpy and memmove. The fix however contained a nit where
the offset + size was constructed as an APInt of PointerSize rather
than PointerSizeInBits.

This lead to isDereferenceableAndAlignedPointer() get truncated values or
values which would be sign extended within that function leading to
incorrect results.

Thanks to Alex Crichton for reporting the issue!

This resolves PR33978.

Reviewers: inouehrs

Differential Revision: https://reviews.llvm.org/D36236

------------------------------------------------------------------------

git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_50@309956 91177308-0d34-0410-b5e6-96231b3b80d8
lib/CodeGen/MachineInstr.cpp
test/CodeGen/Mips/pr33978.ll [new file with mode: 0644]