[InstCombine] Signed saturation patterns
[llvm-core.git] / include / llvm / TextAPI / MachO / TextAPIWriter.h
blob2a45bb86a332f6a9c34029649c976e0ae143979d
1 //===--- TextAPIWriter.h - Text API Writer ----------------------*- 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 #ifndef LLVM_TEXTAPI_MACHO_WRITER_H
10 #define LLVM_TEXTAPI_MACHO_WRITER_H
12 #include "llvm/Support/MemoryBuffer.h"
14 namespace llvm {
15 namespace MachO {
17 class InterfaceFile;
19 class TextAPIWriter {
20 public:
21 TextAPIWriter() = delete;
23 static Error writeToStream(raw_ostream &os, const InterfaceFile &);
26 } // end namespace MachO.
27 } // end namespace llvm.
29 #endif // LLVM_TEXTAPI_MACHO_WRITER_H