commit | 76defc5b4e45e76484339f33197c3cd9ad60543c | [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 | 8472b498a0a49076eeb95aeda287c8052547e65f [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;