make X86ATTAsmPrinter::PrintPICBaseSymbol forward to X86MCInstLower.
[llvm/avr.git] / lib / Bitcode / Writer / SerializeAPFloat.cpp
blob25d954faa138deb72616e76067a97ed78a416318
1 //===-- SerializeAPInt.cpp - Serialization for APFloat ---------*- C++ -*--===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements serialization of APFloat.
12 //===----------------------------------------------------------------------===//
14 #include "llvm/ADT/APFloat.h"
15 #include "llvm/Bitcode/Serialize.h"
17 using namespace llvm;
19 void APFloat::Emit(Serializer& S) const {
20 S.Emit(bitcastToAPInt());