]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/CodeGen/blocks-opencl.cl
Vendor import of clang release_38 branch r258549:
[FreeBSD/FreeBSD.git] / test / CodeGen / blocks-opencl.cl
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
5 void dummy(float (^op)(float))
6 {
7 }
8
9 // CHECK: i8 addrspace(3)* getelementptr inbounds ([9 x i8], [9 x i8] addrspace(3)* @.str, i32 0, i32 0)
10
11 kernel void test_block()
12 {
13   float (^X)(float) = ^(float x) { return x + 42.0f; };
14   dummy(X);
15 }
16