//===- IRBuilderFolder.h - Const folder interface for IRBuilder -*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file defines for constant folding interface used by IRBuilder. // It is implemented by ConstantFolder (default), TargetFolder and NoFoler. // //===----------------------------------------------------------------------===// #ifndef LLVM_IR_IRBUILDERFOLDER_H #define LLVM_IR_IRBUILDERFOLDER_H #include "llvm/ADT/ArrayRef.h" #include "llvm/IR/GEPNoWrapFlags.h" #include "llvm/IR/InstrTypes.h" #include "llvm/IR/Instruction.h" namespace llvm { /// IRBuilderFolder - Interface for constant folding in IRBuilder. class IRBuilderFolder { … }; } // end namespace llvm #endif // LLVM_IR_IRBUILDERFOLDER_H