diff options
author | Joey Gouly <joey.gouly@gmail.com> | 2016-08-10 16:04:14 +0000 |
---|---|---|
committer | Joey Gouly <joey.gouly@gmail.com> | 2016-08-10 16:04:14 +0000 |
commit | b95e36027f06e8870aa34b193595d93a7a99ce4a (patch) | |
tree | f4ff9c50f7bc2a243668c55f97fec9a74bb27817 | |
parent | ddbda402459d53fd9bf87e38ab15735a8cbb3129 (diff) | |
download | bcm5719-llvm-b95e36027f06e8870aa34b193595d93a7a99ce4a.tar.gz bcm5719-llvm-b95e36027f06e8870aa34b193595d93a7a99ce4a.zip |
[OpenCL] Fix typo in test that I accidentally introduced in my previous commit.
llvm-svn: 278235
-rw-r--r-- | clang/test/CodeGenOpenCL/cl20-device-side-enqueue.cl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenOpenCL/cl20-device-side-enqueue.cl b/clang/test/CodeGenOpenCL/cl20-device-side-enqueue.cl index 61418d86b04..783ce0254a1 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; |