xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGen/blocks-opencl.cl (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1// RUN: %clang_cc1 -O0 %s -ffake-address-space-map -emit-llvm -o - -fblocks -triple x86_64-unknown-unknown | FileCheck %s
2// This used to crash due to trying to generate a bitcase from a cstring
3// in the constant address space to i8* in AS0.
4
5void dummy(float (^op)(float))
6{
7}
8
9// CHECK: i8 addrspace(3)* getelementptr inbounds ([9 x i8] addrspace(3)* @.str, i32 0, i32 0)
10
11kernel void test_block()
12{
13  float (^X)(float) = ^(float x) { return x + 42.0f; };
14  dummy(X);
15}
16
17