Ted Kremenek | c47dfdd | 2007-11-07 18:39:22 +0000 | [diff] [blame] | 1 | //===-- SerializeAPInt.cpp - Serialization for APFloat ---------*- C++ -*--===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Ted Kremenek | c47dfdd | 2007-11-07 18:39:22 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements deserialization of APFloat. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "llvm/ADT/APFloat.h" |
| 15 | #include "llvm/Bitcode/Deserialize.h" |
| 16 | |
| 17 | using namespace llvm; |
| 18 | |
| 19 | APFloat APFloat::ReadVal(Deserializer& D) { |
| 20 | APInt x; |
| 21 | D.Read(x); |
| 22 | return APFloat(x); |
| 23 | } |
| 24 | |