Path: blob/main/contrib/llvm-project/llvm/lib/Target/Xtensa/MCTargetDesc/XtensaMCAsmInfo.h
35295 views
//===-- XtensaMCAsmInfo.h - Xtensa Asm Info --------------------*- C++ -*--===//1//2// The LLVM Compiler Infrastructure3//4// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.5// See https://llvm.org/LICENSE.txt for license information.6// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception7//8//===----------------------------------------------------------------------===//9//10// This file contains the declaration of the XtensaMCAsmInfo class.11//12//===----------------------------------------------------------------------===//1314#ifndef LLVM_LIB_TARGET_XTENSA_MCTARGETDESC_XTENSATARGETASMINFO_H15#define LLVM_LIB_TARGET_XTENSA_MCTARGETDESC_XTENSATARGETASMINFO_H1617#include "llvm/MC/MCAsmInfoELF.h"1819namespace llvm {20class Triple;2122class XtensaMCAsmInfo : public MCAsmInfoELF {23public:24explicit XtensaMCAsmInfo(const Triple &TT);25};2627} // namespace llvm2829#endif // LLVM_LIB_TARGET_XTENSA_MCTARGETDESC_XTENSATARGETASMINFO_H303132