blob: c2fe01bfb75b57e76b3dc47db25b852f4cbc7532 [file] [log] [blame]
//===-- 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);
}