Pekka Jaaskelainen | e94b0e1 | 2014-12-19 18:04:27 +0000 | [diff] [blame^] | 1 | // RUN: %clang_cc1 %s -emit-llvm -o - -ffake-address-space-map | FileCheck %s |
2 | |||||
3 | int test_func(constant char* foo); | ||||
4 | |||||
5 | kernel void str_array_decy() { | ||||
6 | test_func("Test string literal"); | ||||
7 | } | ||||
8 | |||||
9 | // CHECK: i8 addrspace(3)* getelementptr inbounds ([20 x i8] addrspace(3)* | ||||
10 | // CHECK-NOT: addrspacecast | ||||
11 |