With isSingleValueType starting to treat vector types as single-value types,
code that uses this interface needs to be updated.
Details
Details
Diff Detail
Diff Detail
Event Timeline
Comment Actions
Added a minor inline comment.
lib/Target/NVPTX/NVPTXAsmPrinter.cpp | ||
---|---|---|
1506 | TD->getPrefTypeAlignment(Ty) already handles vector types in a seemingly more reasonable way. For instance, if the element type of Ty is <5 x float>, the deleted code here returns 20, but getPrefTypeAlignment returns 32. |
TD->getPrefTypeAlignment(Ty) already handles vector types in a seemingly more reasonable way. For instance, if the element type of Ty is <5 x float>, the deleted code here returns 20, but getPrefTypeAlignment returns 32.