The only thing these tests care about from an ABI perspective is sret, don't also test all the optimization attributes.
18 lines
252 B
C++
18 lines
252 B
C++
// RUN: %clang_cc1 -triple mips64el-unknown-linux -O3 -target-abi n64 -o - -emit-llvm %s | FileCheck %s
|
|
|
|
class B {
|
|
public:
|
|
virtual ~B() {}
|
|
};
|
|
|
|
class D : public B {
|
|
};
|
|
|
|
extern D gd0;
|
|
|
|
// CHECK: _Z4foo1v(ptr {{.*}} sret
|
|
|
|
D foo1(void) {
|
|
return gd0;
|
|
}
|