1 //===-- XtensaMCAsmInfo.h - Xtensa Asm Info --------------------*- C++ -*--===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 6 // See https://llvm.org/LICENSE.txt for license information. 7 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 8 // 9 //===----------------------------------------------------------------------===// 10 // 11 // This file contains the declaration of the XtensaMCAsmInfo class. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #ifndef LLVM_LIB_TARGET_XTENSA_MCTARGETDESC_XTENSATARGETASMINFO_H 16 #define LLVM_LIB_TARGET_XTENSA_MCTARGETDESC_XTENSATARGETASMINFO_H 17 18 #include "llvm/MC/MCAsmInfoELF.h" 19 20 namespace llvm { 21 class Triple; 22 23 class XtensaMCAsmInfo : public MCAsmInfoELF { 24 public: 25 explicit XtensaMCAsmInfo(const Triple &TT); 26 }; 27 28 } // namespace llvm 29 30 #endif // LLVM_LIB_TARGET_XTENSA_MCTARGETDESC_XTENSATARGETASMINFO_H 31