This commit is contained in:
Xiang Li 2017-09-01 08:29:32 -07:00
Родитель ddc78174f4
Коммит 20268a4725
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1541,7 +1541,7 @@ bool SROA_HLSL::performScalarRepl(Function &F, DxilTypeSystem &typeSys) {
// alloca. Big alloca will be split to smaller piece first, when process the
// alloca, it will be alloca flattened from big alloca instead of a GEP of big
// alloca.
auto size_cmp = [&](AllocaInst *a0, AllocaInst *a1) -> bool {
auto size_cmp = [&DL](const AllocaInst *a0, const AllocaInst *a1) -> bool {
return DL.getTypeAllocSize(a0->getAllocatedType()) >
DL.getTypeAllocSize(a1->getAllocatedType());
};