llvm-project/clang/test/CodeGenCXX/mangle-ref-qualifiers.cpp
Douglas Gregor f3ea1ed1ad Rvalue references for *this: add name mangling for ref-qualifiers,
using rules that I just made up this morning. This encoding has now
been proposed to the Itanium C++ ABI group for inclusion, but of
course it's still possible that the mangling will change.

llvm-svn: 124296
2011-01-26 17:36:28 +00:00

17 lines
465 B
C++

// RUN: %clang_cc1 -std=c++0x -triple x86_64-apple-darwin10 -emit-llvm -o - %s | FileCheck %s
struct X {
int f() &;
int g() &&;
int h() const &&;
};
// CHECK: define i32 @_ZNR1X1fEv
int X::f() & { return 0; }
// CHECK: define i32 @_ZNO1X1gEv
int X::g() && { return 0; }
// CHECK: define i32 @_ZNKO1X1hEv
int X::h() const && { return 0; }
// CHECK: define void @_Z1fM1XRFivEMS_OFivEMS_KOFivE
void f(int (X::*)() &, int (X::*)() &&, int (X::*)() const&&) { }