mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-14 15:28:20 +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:
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;
|
||||||
|
}
|
||||||
|
|
Reference in New Issue
Block a user