diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2009-07-28 17:38:28 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2009-07-28 17:38:28 +0000 |
commit | 9e809e7da2448c08aa11f15be4680226754678ce (patch) | |
tree | 80da38d384657efa4f61e14563f8296541f7999d /test/CodeGenCXX/constructor-init.cpp | |
parent | 227aad58cc46c15dfc3fee2244d4a56d8c003d8f (diff) |
More work toward data member access ir-gen.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@77332 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/constructor-init.cpp')
-rw-r--r-- | test/CodeGenCXX/constructor-init.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/CodeGenCXX/constructor-init.cpp b/test/CodeGenCXX/constructor-init.cpp index d2c33aef54..4f7f8ee8c5 100644 --- a/test/CodeGenCXX/constructor-init.cpp +++ b/test/CodeGenCXX/constructor-init.cpp @@ -35,6 +35,9 @@ struct N : M , P, Q { MPR(); PPR(); QPR(); + printf("iQ = %d\n", iQ); + printf("iP = %d\n", iP); + printf("iM = %d\n", iM); } float ld; float ff; |