mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-02 08:46:37 +00:00
Test case for r103633.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@103634 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d13a0caf72
commit
cacd5d3b17
17
test/FrontendC++/2010-05-12-PtrToMember-Dbg.cpp
Normal file
17
test/FrontendC++/2010-05-12-PtrToMember-Dbg.cpp
Normal file
@ -0,0 +1,17 @@
|
||||
//RUN: %llvmgxx -O0 -emit-llvm -S -g -o - %s | grep DW_TAG_auto_variable
|
||||
class Foo
|
||||
{
|
||||
public:
|
||||
int x;
|
||||
int y;
|
||||
Foo (int i, int j) { x = i; y = j; }
|
||||
};
|
||||
|
||||
|
||||
Foo foo(10, 11);
|
||||
|
||||
int main() {
|
||||
int Foo::* pmi = &Foo::y;
|
||||
return foo.*pmi;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user