1 //===- SimplifyCFG.h - Tutorial SimplifyCFG ---------------------*- C++ -*-===// 2 // 3 // 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 7 // 8 //===----------------------------------------------------------------------===// 9 10 #ifndef LLVM_EXAMPLES_IRTRANSFORMS_SIMPLIFYCFG__H 11 #define LLVM_EXAMPLES_IRTRANSFORMS_SIMPLIFYCFG__H 12 13 #include "llvm/Pass.h" 14 #include "llvm/PassRegistry.h" 15 16 namespace llvm { 17 18 FunctionPass *createSimplifyCFGPass(); 19 20 void initializeSimplifyCFGLegacyPassPass(PassRegistry &); 21 22 } // end namespace llvm 23 24 #endif // LLVM_EXAMPLES_IRTRANSFORMS_SIMPLIFYCFG__H 25