llvm-project/clang/lib/Serialization
Francois Pichet d583da04d0 More anonymous struct/union redesign. This one deals with anonymous field used in a constructor initializer list:
struct X {
  X() : au_i1(123) {}
  union {
    int au_i1;
    float au_f1;
  };
};

clang will now deal with au_i1 explicitly as an IndirectFieldDecl.

llvm-svn: 120900
2010-12-04 09:14:42 +00:00
..
ASTCommon.cpp Give a default implementation for ASTDeserializationListener's methods, no functionality change. 2010-10-14 20:14:28 +00:00
ASTCommon.h Use the ASTMutationListener to track added template specializations in a chained PCH. 2010-10-28 07:38:42 +00:00
ASTReader.cpp More anonymous struct/union redesign. This one deals with anonymous field used in a constructor initializer list: 2010-12-04 09:14:42 +00:00
ASTReaderDecl.cpp Added struct/class syntactic info for c++0x scoped enum. 2010-12-03 18:54:17 +00:00
ASTReaderStmt.cpp Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPropertyRefExpr 2010-12-02 01:19:52 +00:00
ASTWriter.cpp More anonymous struct/union redesign. This one deals with anonymous field used in a constructor initializer list: 2010-12-04 09:14:42 +00:00
ASTWriterDecl.cpp Added struct/class syntactic info for c++0x scoped enum. 2010-12-03 18:54:17 +00:00
ASTWriterStmt.cpp Simplify the ASTs by consolidating ObjCImplicitGetterSetterExpr and ObjCPropertyRefExpr 2010-12-02 01:19:52 +00:00
CMakeLists.txt Revert "CMake: Update to use standard CMake dependency tracking facilities instead" 2010-09-13 23:54:41 +00:00
GeneratePCH.cpp When using a precompiled preamble with detailed preprocessing records, 2010-11-30 06:16:57 +00:00
Makefile Reintroduce the serialization library, with fixed dependencies. 2010-08-17 20:43:28 +00:00