diff options
author | Anders Carlsson <andersca@mac.com> | 2009-11-21 23:56:04 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2009-11-21 23:56:04 +0000 |
commit | e18e29eeb9947b93656cfe1a16f37e54462e0ab4 (patch) | |
tree | 40333dc75d1dcc7675e88971e5f0eff8e5ea9787 /clang/lib/CodeGen/CGExprConstant.cpp | |
parent | e09e95b35c1367ead8e0af22f6f97b7854651ff3 (diff) | |
download | bcm5719-llvm-e18e29eeb9947b93656cfe1a16f37e54462e0ab4.tar.gz bcm5719-llvm-e18e29eeb9947b93656cfe1a16f37e54462e0ab4.zip |
Support emitting aggregate class initializers. Fixes PR5581.
llvm-svn: 89569
Diffstat (limited to 'clang/lib/CodeGen/CGExprConstant.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGExprConstant.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CGExprConstant.cpp b/clang/lib/CodeGen/CGExprConstant.cpp index 40b845dba05..d0475dd8df1 100644 --- a/clang/lib/CodeGen/CGExprConstant.cpp +++ b/clang/lib/CodeGen/CGExprConstant.cpp @@ -673,7 +673,7 @@ public: if (ILE->getType()->isArrayType()) return EmitArrayInitialization(ILE); - if (ILE->getType()->isStructureType()) + if (ILE->getType()->isRecordType()) return EmitStructInitialization(ILE); if (ILE->getType()->isUnionType()) |