浏览代码

Code cleanup.

Xiang Li 8 年之前
父节点
当前提交
20268a4725
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/Transforms/Scalar/ScalarReplAggregatesHLSL.cpp

+ 1 - 1
lib/Transforms/Scalar/ScalarReplAggregatesHLSL.cpp

@@ -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());
   };