CodeGenPassBuilder.cpp 1001 B

12345678910111213141516171819202122232425
  1. //===--- CodeGenPassBuilder.cpp --------------------------------------- ---===//
  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. // This file defines interfaces to access the target independent code
  10. // generation passes provided by the LLVM backend.
  11. //
  12. //===---------------------------------------------------------------------===//
  13. #include "llvm/CodeGen/CodeGenPassBuilder.h"
  14. using namespace llvm;
  15. namespace llvm {
  16. #define DUMMY_MACHINE_MODULE_PASS(NAME, PASS_NAME, CONSTRUCTOR) \
  17. AnalysisKey PASS_NAME::Key;
  18. #include "llvm/CodeGen/MachinePassRegistry.def"
  19. #define DUMMY_MACHINE_FUNCTION_PASS(NAME, PASS_NAME, CONSTRUCTOR) \
  20. AnalysisKey PASS_NAME::Key;
  21. #include "llvm/CodeGen/MachinePassRegistry.def"
  22. } // namespace llvm