[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / include / llvm-c / Transforms / AggressiveInstCombine.h
blobdb061a7ad1fc0980ff7e13705cdc3c8bcbf5a345
1 /*===-- AggressiveInstCombine.h ---------------------------------*- C++ -*-===*\
2 |* *|
3 |* Part of the LLVM Project, under the Apache License v2.0 with LLVM *|
4 |* 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 |* This header declares the C interface to libLLVMAggressiveInstCombine.a, *|
11 |* which combines instructions to form fewer, simple IR instructions. *|
12 |* *|
13 \*===----------------------------------------------------------------------===*/
15 #ifndef LLVM_C_TRANSFORMS_AGGRESSIVEINSTCOMBINE_H
16 #define LLVM_C_TRANSFORMS_AGGRESSIVEINSTCOMBINE_H
18 #include "llvm-c/ExternC.h"
19 #include "llvm-c/Types.h"
21 LLVM_C_EXTERN_C_BEGIN
23 /**
24 * @defgroup LLVMCTransformsAggressiveInstCombine Aggressive Instruction Combining transformations
25 * @ingroup LLVMCTransforms
27 * @{
30 /** See llvm::createAggressiveInstCombinerPass function. */
31 void LLVMAddAggressiveInstCombinerPass(LLVMPassManagerRef PM);
33 /**
34 * @}
37 LLVM_C_EXTERN_C_END
39 #endif