summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorI-Jui (Ray) Sung <ray@multicorewareinc.com>2013-11-20 16:24:16 -0600
committerI-Jui (Ray) Sung <ray@multicorewareinc.com>2013-11-20 16:29:05 -0600
commit853299f0388d2d2067a8a5ab412ac64391996405 (patch)
tree9e08fd0434a984eb6e01bd6a3e35aaba3f2b1238
parentd3f37fa3a9d2fb1f593ccf5797919bd749936966 (diff)
GPU Calc: fixed missing assigment operator in unrollinglibreoffice-4-2-milestone-1
Change-Id: Ie7060900f4f90b789a16b1341ec1c2c905410ee1
-rw-r--r--sc/source/core/opencl/formulagroupcl.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/sc/source/core/opencl/formulagroupcl.cxx b/sc/source/core/opencl/formulagroupcl.cxx
index 2ddff7582373..78437482a715 100644
--- a/sc/source/core/opencl/formulagroupcl.cxx
+++ b/sc/source/core/opencl/formulagroupcl.cxx
@@ -533,6 +533,7 @@ return nCurWindowSize;
if(count==0){
temp1 << "if(i + gid0 < " <<mpDVR->GetArrayLength();
temp1 << "){\n\t\t";
+ temp1 << "tmp = ";
temp1 << mpCodeGen->Gen2(GenSlidingWindowDeclRef(), "tmp");
temp1 << ";\n\t\t\t";
temp1 << "}\n\t";