MCAsmInfoGOFF.cpp 857 B

123456789101112131415161718192021222324252627
  1. //===- MCAsmInfoGOFF.cpp - MCGOFFAsmInfo properties -----------------------===//
  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. #include "llvm/MC/MCAsmInfoGOFF.h"
  15. using namespace llvm;
  16. void MCAsmInfoGOFF::anchor() {}
  17. MCAsmInfoGOFF::MCAsmInfoGOFF() {
  18. Data64bitsDirective = "\t.quad\t";
  19. HasDotTypeDotSizeDirective = false;
  20. PrivateGlobalPrefix = "@@";
  21. PrivateLabelPrefix = "@";
  22. ZeroDirective = "\t.space\t";
  23. }