[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / examples / IRTransforms / InitializePasses.h
blob8b6673d518e63241246a477f04aa5f056908af1b
1 //===- InitializePasses.h - -------------------------------------*- 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_INITIALIZEPASSES__H
11 #define LLVM_EXAMPLES_IRTRANSFORMS_INITIALIZEPASSES__H
13 #include "llvm/IR/PassManager.h"
15 namespace llvm {
17 void initializeExampleIRTransforms(PassRegistry &Registry);
18 void initializeSimplifyCFGLegacyPassPass(PassRegistry &Registry);
20 } // end namespace llvm
22 #endif