Implemented generic serialization of APFloat.

llvm-svn: 43829
This commit is contained in:
Ted Kremenek
2007-11-07 18:39:22 +00:00
parent cc88d37531
commit 81ad944c94
3 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
//===-- SerializeAPInt.cpp - Serialization for APFloat ---------*- 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 file implements deserialization of APFloat.
//
//===----------------------------------------------------------------------===//
#include "llvm/ADT/APFloat.h"
#include "llvm/Bitcode/Deserialize.h"
using namespace llvm;
APFloat APFloat::ReadVal(Deserializer& D) {
APInt x;
D.Read(x);
return APFloat(x);
}