xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenOpenCL/str_literals.cl (revision 0b98e8aad89f2bd4ba80b523d73cf29e9dd82ce1)
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