Subversion Repositories QNX 8.QNX8 LLVM/Clang compiler suite

Rev

Blame | Last modification | View Log | Download | RSS feed

  1. //===- MCAsmInfoGOFF.h - GOFF Asm Info Fields -------------------*- 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. /// \file
  10. /// This file defines certain target specific asm properties for GOFF (z/OS)
  11. /// based targets.
  12. ///
  13. //===----------------------------------------------------------------------===//
  14.  
  15. #ifndef LLVM_MC_MCASMINFOGOFF_H
  16. #define LLVM_MC_MCASMINFOGOFF_H
  17.  
  18. #include "llvm/MC/MCAsmInfo.h"
  19.  
  20. namespace llvm {
  21. class MCAsmInfoGOFF : public MCAsmInfo {
  22.   virtual void anchor();
  23.  
  24. protected:
  25.   MCAsmInfoGOFF();
  26. };
  27. } // end namespace llvm
  28.  
  29. #endif // LLVM_MC_MCASMINFOGOFF_H
  30.