2007-11-07 18:39:22 +00:00
|
|
|
//===-- SerializeAPInt.cpp - Serialization for APFloat ---------*- C++ -*--===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:36:04 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-11-07 18:39:22 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// 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);
|
|
|
|
}
|
|
|
|
|