mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
db6c348f31
memcpy's like: memcpy(A, B) memcpy(A, C) we cannot delete the first memcpy as dead if A and C might be aliases. If so, we actually get: memcpy(A, B) memcpy(A, A) which is not correct to transform into: memcpy(A, A) This patch was heavily influenced by Jakub Staszak's patch in PR8728, thanks Jakub! llvm-svn: 120974 |
||
---|---|---|
.. | ||
const-pointers.ll | ||
crash.ll | ||
dg.exp | ||
free.ll | ||
lifetime.ll | ||
memintrinsics.ll | ||
no-targetdata.ll | ||
PartialStore.ll | ||
simple.ll |