MergeICmps.h 714 B

12345678910111213141516171819202122232425
  1. //===- MergeICmps.h -----------------------------*- C++ -*-===//
  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. #ifndef LLVM_TRANSFORMS_SCALAR_MERGEICMPS_H
  9. #define LLVM_TRANSFORMS_SCALAR_MERGEICMPS_H
  10. #include "llvm/IR/PassManager.h"
  11. namespace llvm {
  12. class Function;
  13. struct MergeICmpsPass
  14. : PassInfoMixin<MergeICmpsPass> {
  15. PreservedAnalyses run(Function &F, FunctionAnalysisManager &AM);
  16. };
  17. } // end namespace llvm
  18. #endif // LLVM_TRANSFORMS_SCALAR_MERGEICMPS_H