MCTargetOptions.cpp 860 B

1234567891011121314151617181920212223242526272829
  1. //===- lib/MC/MCTargetOptions.cpp - MC Target Options --------------------===//
  2. //
  3. // The LLVM Compiler Infrastructure
  4. //
  5. // This file is distributed under the University of Illinois Open Source
  6. // License. See LICENSE.TXT for details.
  7. //
  8. //===----------------------------------------------------------------------===//
  9. #include "llvm/ADT/StringRef.h"
  10. #include "llvm/MC/MCTargetOptions.h"
  11. #if 0 // HLSL Change
  12. namespace llvm {
  13. MCTargetOptions::MCTargetOptions()
  14. : SanitizeAddress(false), MCRelaxAll(false), MCNoExecStack(false),
  15. MCFatalWarnings(false), MCSaveTempLabels(false),
  16. MCUseDwarfDirectory(false), ShowMCEncoding(false), ShowMCInst(false),
  17. AsmVerbose(false), DwarfVersion(0), ABIName() {}
  18. StringRef MCTargetOptions::getABIName() const {
  19. return ABIName;
  20. }
  21. } // end namespace llvm
  22. #endif // HLSL Change