1 //===- SimplifyCFG.h - Tutorial SimplifyCFG ---------------------*- C++ -*-===//
4 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
5 // See https://llvm.org/LICENSE.txt for license information.
6 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //===----------------------------------------------------------------------===//
10 #ifndef LLVM_EXAMPLES_IRTRANSFORMS_SIMPLIFYCFG__H
11 #define LLVM_EXAMPLES_IRTRANSFORMS_SIMPLIFYCFG__H
13 #include "llvm/Pass.h"
14 #include "llvm/PassRegistry.h"
18 FunctionPass
*createSimplifyCFGPass();
20 void initializeSimplifyCFGLegacyPassPass(PassRegistry
&);
22 } // end namespace llvm
24 #endif // LLVM_EXAMPLES_IRTRANSFORMS_SIMPLIFYCFG__H