Path: blob/main/contrib/llvm-project/llvm/lib/Target/DirectX/DXILFlattenArrays.h
213799 views
//===- DXILFlattenArrays.h - Perform flattening of DXIL Arrays -*- C++ -*-===//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//===---------------------------------------------------------------------===//78#ifndef LLVM_TARGET_DIRECTX_DXILFLATTENARRAYS_H9#define LLVM_TARGET_DIRECTX_DXILFLATTENARRAYS_H1011#include "llvm/IR/PassManager.h"1213namespace llvm {1415/// A pass that transforms multidimensional arrays into one-dimensional arrays.16class DXILFlattenArrays : public PassInfoMixin<DXILFlattenArrays> {17public:18PreservedAnalyses run(Module &M, ModuleAnalysisManager &);19};20} // namespace llvm2122#endif // LLVM_TARGET_DIRECTX_DXILFLATTENARRAYS_H232425