Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CodeGenOpenCLCXX / addrspace_cast.clcpp
blob44e4e0f356f9b77c04dc700b8cb0181dfd69c373
1 //RUN: %clang_cc1 %s -triple spir -emit-llvm -O0 -o - | FileCheck %s
3 //CHECK-LABEL: define{{.*}} spir_func void @_Z3barPU3AS1i
4 void bar(global int *gl) {
5   //CHECK: addrspacecast ptr addrspace(1) %{{[0-9]+}} to ptr addrspace(4)
6   int *gen = addrspace_cast<int *>(gl);