Fix comment

llvm-svn: 268102
This commit is contained in:
Matt Arsenault 2016-04-29 21:02:04 +00:00
parent 349213f941
commit 2c15956749

View File

@ -296,7 +296,7 @@ public:
///
/// (store (y (conv x)), y*)) -> (store x, (x*))
virtual bool isStoreBitCastBeneficial(EVT StoreVT, EVT BitcastVT) const {
// Default to the same logic as stores.
// Default to the same logic as loads.
return isLoadBitCastBeneficial(StoreVT, BitcastVT);
}