[InstCombine] Signed saturation patterns
[llvm-core.git] / include / llvm / MC / MCAsmInfoDarwin.h
blobc889ce99cebeb87de2467c0c5ec2edde0d904ae8
1 //===- MCAsmInfoDarwin.h - Darwin asm properties ----------------*- 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 //===----------------------------------------------------------------------===//
8 //
9 // This file defines target asm properties related what form asm statements
10 // should take in general on Darwin-based targets
12 //===----------------------------------------------------------------------===//
14 #ifndef LLVM_MC_MCASMINFODARWIN_H
15 #define LLVM_MC_MCASMINFODARWIN_H
17 #include "llvm/MC/MCAsmInfo.h"
19 namespace llvm {
21 class MCAsmInfoDarwin : public MCAsmInfo {
22 public:
23 explicit MCAsmInfoDarwin();
25 bool isSectionAtomizableBySymbols(const MCSection &Section) const override;
28 } // end namespace llvm
30 #endif // LLVM_MC_MCASMINFODARWIN_H