Path: blob/main/contrib/llvm-project/llvm/lib/Passes/CodeGenPassBuilder.cpp
35262 views
//===--- CodeGenPassBuilder.cpp --------------------------------------- ---===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7//8// This file defines interfaces to access the target independent code9// generation passes provided by the LLVM backend.10//11//===---------------------------------------------------------------------===//1213#include "llvm/Passes/CodeGenPassBuilder.h"1415using namespace llvm;1617namespace llvm {18#define DUMMY_MACHINE_FUNCTION_ANALYSIS(NAME, CREATE_PASS) \19AnalysisKey PASS_NAME::Key;20#include "llvm/Passes/MachinePassRegistry.def"21} // namespace llvm222324