blob: aa9cbae2c408bb04c3553e596e3bfcdc913751b5 [file] [log] [blame]
// RUN: %clang -target mips64el-unknown-linux -O3 -S -mabi=n64 -o - -emit-llvm %s | FileCheck %s
class B {
public:
virtual ~B() {}
};
class D : public B {
};
extern D gd0;
// CHECK: _Z4foo1v(%class.D* sret noalias nocapture
D foo1(void) {
return gd0;
}