[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / clang / lib / AST / Interp / Floating.cpp
blob922e17ad1450d653a2682a024dc46ed8e4783ab5
1 //===---- Floating.cpp - Support for floating point values ------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "Floating.h"
11 namespace clang {
12 namespace interp {
14 llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, Floating F) {
15 F.print(OS);
16 return OS;
19 Floating getSwappedBytes(Floating F) { return F; }
21 } // namespace interp
22 } // namespace clang