summaryrefslogtreecommitdiff
path: root/backend/kernels/add2.cl
diff options
context:
space:
mode:
Diffstat (limited to 'backend/kernels/add2.cl')
-rw-r--r--backend/kernels/add2.cl2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/kernels/add2.cl b/backend/kernels/add2.cl
index c43e2c34..80705768 100644
--- a/backend/kernels/add2.cl
+++ b/backend/kernels/add2.cl
@@ -6,7 +6,7 @@ __kernel struct big add(unsigned int x, unsigned int y)
{
struct big p;
p.a = x + y;
- p.b = x - y;
+ p.b = x - y + 10;
return p;
}