Details
Details
- Reviewers
• tstellarAMD jlebar escha
Diff Detail
Diff Detail
Event Timeline
lib/Transforms/Vectorize/LoadStoreVectorizer.cpp | ||
---|---|---|
471 | Just checking, there are sub-byte types, but size >= 8 implies size % 8 == 0? | |
test/Transforms/LoadStoreVectorizer/AMDGPU/weird-type-accesses.ll | ||
2 | Maybe this deserves a more specific comment? Like, "Checks that we don't merge loads/stores of types smaller than one byte, or vectors with elements smaller than one byte."? |
Comment Actions
r274306
lib/Transforms/Vectorize/LoadStoreVectorizer.cpp | ||
---|---|---|
471 | I think the % 8 is taken care of by the weird type alloc size check, so this might be redundant and could use simplification |
Just checking, there are sub-byte types, but size >= 8 implies size % 8 == 0?