summaryrefslogtreecommitdiffstats
path: root/clang/AST/DeclSerialization.cpp
blob: 3a326f006b41572fe236f3b3fc6e144842394746 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//===--- DeclSerialization.cpp - Serialization of Decls ---------*- C++ -*-===//
//
//                     The LLVM Compiler Infrastructure
//
// This file was developed by Ted Kremenek and is distributed under
// the University of Illinois Open Source License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
//  This files defines methods that implement bitcode serialization for Decls.
//
//===----------------------------------------------------------------------===//

#include "clang/AST/Decl.h"
#include "clang/AST/Expr.h"
#include "llvm/Bitcode/Serialize.h"
#include "llvm/Bitcode/Deserialize.h"

using namespace clang;

void Decl::Emit(llvm::Serializer& S) const {
  assert ("FIXME: not implemented.");
}

Decl* Decl::Materialize(llvm::Deserializer& D) {
  assert ("FIXME: not implemented.");
  return NULL;
}
OpenPOWER on IntegriCloud