|
unsigned OpSize = VA.getValVT().getSizeInBits(); |
It seems that the OpSize here is unused, since the value is "ceiled" to the next multiple of 8 right after this, I assume that the byte aligned size was meant to be passed somewhere but cannot figure out where. If not then should this line be removed to avoid confusion?
LLVM-Code-Generation-by-example/llvm/lib/Target/H2BLB/H2BLBISelLowering.cpp
Line 309 in fa1cf54
It seems that the
OpSizehere is unused, since the value is "ceiled" to the next multiple of 8 right after this, I assume that the byte aligned size was meant to be passed somewhere but cannot figure out where. If not then should this line be removed to avoid confusion?