GPGPU: Use const_cast to avoid compiler warning [NFC]

llvm-svn: 281333
This commit is contained in:
Tobias Grosser 2016-09-13 13:22:27 +00:00
parent 3647a96a44
commit 0a893f7df4
1 changed files with 1 additions and 1 deletions

View File

@ -998,7 +998,7 @@ GPUNodeBuilder::createLaunchParameters(ppcg_kernel *Kernel, Function *F,
isl_id *Id = isl_space_get_tuple_id(Prog->array[i].space, isl_dim_set);
const ScopArrayInfo *SAI = ScopArrayInfo::getFromId(Id);
Value *DevArray = DeviceAllocations[(ScopArrayInfo *)SAI];
Value *DevArray = DeviceAllocations[const_cast<ScopArrayInfo *>(SAI)];
DevArray = createCallGetDevicePtr(DevArray);
Instruction *Param = new AllocaInst(
Builder.getInt8PtrTy(), Launch + "_param_" + std::to_string(Index),