commit | 1c698e0d4f9bf3d141c019d33d9040085a8a67dd | [log] [tgz] |
---|---|---|
author | Fariborz Jahanian <fjahanian@apple.com> | Tue Jul 28 18:54:57 2009 +0000 |
committer | Fariborz Jahanian <fjahanian@apple.com> | Tue Jul 28 18:54:57 2009 +0000 |
tree | 06a8a21c12749e8da01391132c42bb0ba84b1a25 | |
parent | 7db6d838aad4083fe86d7bf703a75fe6e8a17856 [diff] [blame] |
More cleanup of data member access and then some. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77351 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/test/CodeGenCXX/constructor-init.cpp b/test/CodeGenCXX/constructor-init.cpp index 4f7f8ee..c46a561 100644 --- a/test/CodeGenCXX/constructor-init.cpp +++ b/test/CodeGenCXX/constructor-init.cpp
@@ -38,6 +38,9 @@ printf("iQ = %d\n", iQ); printf("iP = %d\n", iP); printf("iM = %d\n", iM); + printf("iQ = %d\n", (*this).iQ); + printf("iP = %d\n", ((*this)).iP); + printf("iM = %d\n", this->iM); } float ld; float ff;