[PATCH] D26526: Clean up DWARFFormValue by reducing duplicated code and removing DWARFFormValue::getFixedFormSizes()
Greg Clayton via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 10 15:34:42 PST 2016
clayborg added a comment.
In order to skip a form to access the 10th attribute, we need to skip 9 forms. Each one of those will individually extract 3 piece of data for which 2 surely never be used and 1 might be used 10% of the time. So it seems it would be worth being lazy if we can especially since it is so easy to do.
https://reviews.llvm.org/D26526
More information about the llvm-commits
mailing list