From 0a893f7df488f6449099429cd35f8db4f44a86cd Mon Sep 17 00:00:00 2001 From: Tobias Grosser Date: Tue, 13 Sep 2016 13:22:27 +0000 Subject: [PATCH] GPGPU: Use const_cast to avoid compiler warning [NFC] llvm-svn: 281333 --- polly/lib/CodeGen/PPCGCodeGeneration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polly/lib/CodeGen/PPCGCodeGeneration.cpp b/polly/lib/CodeGen/PPCGCodeGeneration.cpp index 0d6f1b6..076a94a 100644 --- a/polly/lib/CodeGen/PPCGCodeGeneration.cpp +++ b/polly/lib/CodeGen/PPCGCodeGeneration.cpp @@ -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(SAI)]; DevArray = createCallGetDevicePtr(DevArray); Instruction *Param = new AllocaInst( Builder.getInt8PtrTy(), Launch + "_param_" + std::to_string(Index), -- 2.7.4