blob: d3562988b738a04ca8311bc8b92942a77d7c9242 [file] [log] [blame]
Pekka Jaaskelainenab751a82014-08-14 09:37:50 +00001// 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
David Blaikiebdf40a62015-03-13 18:21:46 +00009// CHECK: i8 addrspace(3)* getelementptr inbounds ([9 x i8], [9 x i8] addrspace(3)* @.str, i32 0, i32 0)
Pekka Jaaskelainenab751a82014-08-14 09:37:50 +000010
11kernel void test_block()
12{
13 float (^X)(float) = ^(float x) { return x + 42.0f; };
14 dummy(X);
15}
16