1*0fca6ea1SDimitry Andric //===--- CodeGenPassBuilder.cpp --------------------------------------- ---===// 2*0fca6ea1SDimitry Andric // 3*0fca6ea1SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*0fca6ea1SDimitry Andric // See https://llvm.org/LICENSE.txt for license information. 5*0fca6ea1SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*0fca6ea1SDimitry Andric // 7*0fca6ea1SDimitry Andric //===----------------------------------------------------------------------===// 8*0fca6ea1SDimitry Andric // 9*0fca6ea1SDimitry Andric // This file defines interfaces to access the target independent code 10*0fca6ea1SDimitry Andric // generation passes provided by the LLVM backend. 11*0fca6ea1SDimitry Andric // 12*0fca6ea1SDimitry Andric //===---------------------------------------------------------------------===// 13*0fca6ea1SDimitry Andric 14*0fca6ea1SDimitry Andric #include "llvm/Passes/CodeGenPassBuilder.h" 15*0fca6ea1SDimitry Andric 16*0fca6ea1SDimitry Andric using namespace llvm; 17*0fca6ea1SDimitry Andric 18*0fca6ea1SDimitry Andric namespace llvm { 19*0fca6ea1SDimitry Andric #define DUMMY_MACHINE_FUNCTION_ANALYSIS(NAME, CREATE_PASS) \ 20*0fca6ea1SDimitry Andric AnalysisKey PASS_NAME::Key; 21*0fca6ea1SDimitry Andric #include "llvm/Passes/MachinePassRegistry.def" 22*0fca6ea1SDimitry Andric } // namespace llvm 23