[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / examples / IRTransforms / SimplifyCFG.h
blob09328afb01d363bae4c058d97275875ebd89cd72
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 //===----------------------------------------------------------------------===//
10 #ifndef LLVM_EXAMPLES_IRTRANSFORMS_SIMPLIFYCFG__H
11 #define LLVM_EXAMPLES_IRTRANSFORMS_SIMPLIFYCFG__H
13 #include "llvm/Pass.h"
14 #include "llvm/PassRegistry.h"
16 namespace llvm {
18 FunctionPass *createSimplifyCFGPass();
20 void initializeSimplifyCFGLegacyPassPass(PassRegistry &);
22 } // end namespace llvm
24 #endif // LLVM_EXAMPLES_IRTRANSFORMS_SIMPLIFYCFG__H