xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenOpenCL/str_literals.cl (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1// RUN: %clang_cc1 %s -emit-llvm -o - -ffake-address-space-map | FileCheck %s
2
3__constant char * __constant x = "hello world";
4__constant char * __constant y = "hello world";
5
6// CHECK: addrspace(3) unnamed_addr constant
7// CHECK-NOT: addrspace(3) unnamed_addr constant
8// CHECK: @x = addrspace(3) global i8 addrspace(3)*
9// CHECK: @y = addrspace(3) global i8 addrspace(3)*
10