Files
clang-p2996/clang/test/CodeGenOpenCLCXX/addrspace-derived-base.cl
Anastasia Stulova 9404955416 [PR40778] Preserve addr space in Derived to Base cast.
The address space for the Base class pointer when up-casting
from Derived should be taken from the Derived class pointer.

Differential Revision: https://reviews.llvm.org/D53818

llvm-svn: 355606
2019-03-07 16:23:15 +00:00

23 lines
541 B
Common Lisp

// RUN: %clang_cc1 %s -triple spir -cl-std=c++ -emit-llvm -O0 -o - | FileCheck %s
struct B {
int mb;
};
class D : public B {
public:
int getmb() { return mb; }
};
void foo() {
D d;
//CHECK: addrspacecast %class.D* %d to %class.D addrspace(4)*
//CHECK: call i32 @_ZNU3AS41D5getmbEv(%class.D addrspace(4)*
d.getmb();
}
//Derived and Base are in the same address space.
//CHECK: define linkonce_odr i32 @_ZNU3AS41D5getmbEv(%class.D addrspace(4)* %this)
//CHECK: bitcast %class.D addrspace(4)* %this1 to %struct.B addrspace(4)*