diff options
| author | Jonas Paulsson <paulsson@linux.vnet.ibm.com> | 2017-11-28 14:44:32 +0000 |
|---|---|---|
| committer | Jonas Paulsson <paulsson@linux.vnet.ibm.com> | 2017-11-28 14:44:32 +0000 |
| commit | f0ff20f1f01fb7c5323c1d89b5e0b19bec0e9e39 (patch) | |
| tree | be9db6d1dd1df7469862ffdf0461388f39a1f77a /llvm/lib/CodeGen/MachineFunction.cpp | |
| parent | b843dc26e4bc0dd5e3ee85f93194773cacc152ea (diff) | |
| download | bcm5719-llvm-f0ff20f1f01fb7c5323c1d89b5e0b19bec0e9e39.tar.gz bcm5719-llvm-f0ff20f1f01fb7c5323c1d89b5e0b19bec0e9e39.zip | |
Use getStoreSize() in various places instead of 'BitSize >> 3'.
This is needed for cases when the memory access is not as big as the width of
the data type. For instance, storing i1 (1 bit) would be done in a byte (8
bits).
Using 'BitSize >> 3' (or '/ 8') would e.g. give the memory access of an i1 a
size of 0, which for instance makes alias analysis return NoAlias even when
it shouldn't.
There are no tests as this was done as a follow-up to the bugfix for the case
where this was discovered (r318824). This handles more similar cases.
Review: Björn Petterson
https://reviews.llvm.org/D40339
llvm-svn: 319173
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
0 files changed, 0 insertions, 0 deletions

