diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-07-28 18:54:57 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-07-28 18:54:57 +0000 |
commit | a399dfae1991f36e6b9930f20908727d0f556c56 (patch) | |
tree | ca5d2d150bf06c25768ea80ee1fc2189987a9ff5 /clang/test/CodeGenCXX/constructor-init.cpp | |
parent | d6b4b297062408d74e7dbbdd94a4a640e326ad1f (diff) | |
download | bcm5719-llvm-a399dfae1991f36e6b9930f20908727d0f556c56.tar.gz bcm5719-llvm-a399dfae1991f36e6b9930f20908727d0f556c56.zip |
More cleanup of data member access and then some.
llvm-svn: 77351
Diffstat (limited to 'clang/test/CodeGenCXX/constructor-init.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/constructor-init.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/constructor-init.cpp b/clang/test/CodeGenCXX/constructor-init.cpp index 4f7f8ee8c5a..c46a561c308 100644 --- a/clang/test/CodeGenCXX/constructor-init.cpp +++ b/clang/test/CodeGenCXX/constructor-init.cpp @@ -38,6 +38,9 @@ struct N : M , P, Q { 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; |