From: Joey Gouly Date: Wed, 10 Aug 2016 16:04:14 +0000 (+0000) Subject: [OpenCL] Fix typo in test that I accidentally introduced in my previous commit. X-Git-Tag: llvmorg-4.0.0-rc1~12852 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b95e36027f06e8870aa34b193595d93a7a99ce4a;p=platform%2Fupstream%2Fllvm.git [OpenCL] Fix typo in test that I accidentally introduced in my previous commit. llvm-svn: 278235 --- diff --git a/clang/test/CodeGenOpenCL/cl20-device-side-enqueue.cl b/clang/test/CodeGenOpenCL/cl20-device-side-enqueue.cl index 61418d8..783ce02 100644 --- a/clang/test/CodeGenOpenCL/cl20-device-side-enqueue.cl +++ b/clang/test/CodeGenOpenCL/cl20-device-side-enqueue.cl @@ -5,7 +5,7 @@ typedef void (^bl_t)(local void *); const bl_t block_G = (bl_t) ^ (local void *a) {}; kernel void device_side_enqueue(global int *a, global int *b, int i) { - // CHECK: %deafault_queue = alloca %opencl.queue_t* + // CHECK: %default_queue = alloca %opencl.queue_t* queue_t default_queue; // CHECK: %flags = alloca i32 unsigned flags = 0;