diff options
Diffstat (limited to 'llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.h')
| -rw-r--r-- | llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.h b/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.h index 389575d14679..b2f191424d01 100644 --- a/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.h +++ b/llvm/lib/Target/SystemZ/MCTargetDesc/SystemZMCAsmInfo.h @@ -10,15 +10,21 @@ #define LLVM_LIB_TARGET_SYSTEMZ_MCTARGETDESC_SYSTEMZMCASMINFO_H #include "llvm/MC/MCAsmInfoELF.h" +#include "llvm/MC/MCAsmInfoGOFF.h" #include "llvm/Support/Compiler.h" namespace llvm { class Triple; enum SystemZAsmDialect { AD_ATT = 0, AD_HLASM = 1 }; -class SystemZMCAsmInfo : public MCAsmInfoELF { +class SystemZMCAsmInfoELF : public MCAsmInfoELF { public: - explicit SystemZMCAsmInfo(const Triple &TT); + explicit SystemZMCAsmInfoELF(const Triple &TT); +}; + +class SystemZMCAsmInfoGOFF : public MCAsmInfoGOFF { +public: + explicit SystemZMCAsmInfoGOFF(const Triple &TT); bool isAcceptableChar(char C) const override; }; |
