blob: 8aff9ab32f0f1f478253e65f931d350df9fa4fc9 [file] [log] [blame]
Akira Hatanaka526cdfb2012-02-08 01:31:22 +00001// RUN: %clang -target mips64el-unknown-linux -ccc-clang-archs mips64el -O3 -S -mabi=n64 -o - -emit-llvm %s | FileCheck %s
2
3class B {
4public:
5 virtual ~B() {}
6};
7
8class D : public B {
9};
10
11extern D gd0;
12
13// CHECK: _Z4foo1v(%class.D* noalias nocapture sret
14
15D foo1(void) {
16 return gd0;
17}