Index: clang-tools-extra/trunk/unittests/clang-doc/BitcodeTest.cpp =================================================================== --- clang-tools-extra/trunk/unittests/clang-doc/BitcodeTest.cpp +++ clang-tools-extra/trunk/unittests/clang-doc/BitcodeTest.cpp @@ -18,15 +18,29 @@ namespace clang { namespace doc { -std::string writeInfo(Info *I) { +template static std::string writeInfo(T &I) { SmallString<2048> Buffer; llvm::BitstreamWriter Stream(Buffer); ClangDocBitcodeWriter Writer(Stream); - // Check that there was no error in the write. - assert(Writer.dispatchInfoForWrite(I) == false); + Writer.emitBlock(I); return Buffer.str().str(); } +std::string writeInfo(Info *I) { + switch (I->IT) { + case InfoType::IT_namespace: + return writeInfo(*static_cast(I)); + case InfoType::IT_record: + return writeInfo(*static_cast(I)); + case InfoType::IT_enum: + return writeInfo(*static_cast(I)); + case InfoType::IT_function: + return writeInfo(*static_cast(I)); + default: + return ""; + } +} + std::vector> readInfo(StringRef Bitcode, size_t NumInfos) { llvm::BitstreamCursor Stream(Bitcode); Index: clang-tools-extra/trunk/unittests/clang-doc/ClangDocTest.h =================================================================== --- clang-tools-extra/trunk/unittests/clang-doc/ClangDocTest.h +++ clang-tools-extra/trunk/unittests/clang-doc/ClangDocTest.h @@ -22,7 +22,7 @@ static const SymbolID EmptySID = SymbolID(); static const SymbolID NonEmptySID = - SymbolID{1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}; + SymbolID{{1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1}}; NamespaceInfo *InfoAsNamespace(Info *I); RecordInfo *InfoAsRecord(Info *I);