Use getStoreSize() instead of getStoreSizeInBits()/8. NFC.
authorPete Cooper <peter_cooper@apple.com>
Wed, 15 Jul 2015 00:07:55 +0000 (00:07 +0000)
committerPete Cooper <peter_cooper@apple.com>
Wed, 15 Jul 2015 00:07:55 +0000 (00:07 +0000)
commit74d5c149560b430655ab8889db45bcc4520b9cf4
tree31dfe5975c2e4a102be48cc699649e3199510e24
parent45177c59dca8f52c7e8b731391b97bc03d16b36c
Use getStoreSize() instead of getStoreSizeInBits()/8.  NFC.

The calls here were both to getStoreSizeInBits() which multiplies by 8.
We then immediately divided by 8.  Calling getStoreSize() returns the
values we need without the extra arithmetic.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@242254 91177308-0d34-0410-b5e6-96231b3b80d8
lib/CodeGen/SelectionDAG/SelectionDAG.cpp