2007-11-07 19:39:22 +01:00
|
|
|
//===-- SerializeAPInt.cpp - Serialization for APFloat ---------*- C++ -*--===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2007-11-07 19:39:22 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements serialization of APFloat.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "llvm/ADT/APFloat.h"
|
|
|
|
#include "llvm/Bitcode/Serialize.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
void APFloat::Emit(Serializer& S) const {
|
2008-10-09 20:53:47 +02:00
|
|
|
S.Emit(bitcastToAPInt());
|
2007-11-07 19:39:22 +01:00
|
|
|
}
|