diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-01-29 17:44:32 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-01-29 17:44:32 +0000 |
commit | 0202cb406ee64be15636ba7b9435a9a83f9d4996 (patch) | |
tree | 0658b765f90c92a584ef4bb103822df89b310785 /clang/lib/CodeGen/CGExprConstant.cpp | |
parent | 5169570e28a556cb9af0951eac1697442d26fa19 (diff) | |
download | bcm5719-llvm-0202cb406ee64be15636ba7b9435a9a83f9d4996.tar.gz bcm5719-llvm-0202cb406ee64be15636ba7b9435a9a83f9d4996.zip |
Introduce a new expression node, ImplicitValueInitExpr, that
represents an implicit value-initialization of a subobject of a
particular type. This replaces the (ab)use of CXXZeroValueInitExpr
within initializer lists for the "holes" that occur due to the use of
C99 designated initializers.
The new test case is currently XFAIL'd, because CodeGen's
ConstExprEmitter (in lib/CodeGen/CGExprConstant.cpp) needs to be
taught to value-initialize when it sees ImplicitValueInitExprs.
llvm-svn: 63317
Diffstat (limited to 'clang/lib/CodeGen/CGExprConstant.cpp')
-rw-r--r-- | clang/lib/CodeGen/CGExprConstant.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/clang/lib/CodeGen/CGExprConstant.cpp b/clang/lib/CodeGen/CGExprConstant.cpp index e523ab3acf2..3aedf9bc7f7 100644 --- a/clang/lib/CodeGen/CGExprConstant.cpp +++ b/clang/lib/CodeGen/CGExprConstant.cpp @@ -248,11 +248,6 @@ public: FieldDecl* curField = ILE->getInitializedFieldInUnion(); if (!curField) { -#ifndef NDEBUG -#endif - } - - if (!curField) { // There's no field to initialize, so value-initialize the union. #ifndef NDEBUG // Make sure that it's really an empty and not a failure of |