Proteus
Programmable JIT compilation and optimization for C/C++ using LLVM
Loading...
Searching...
No Matches
Init.h
Go to the documentation of this file.
1//===-- Init.h -- Proteus initialization state --===//
2//
3// Part of the Proteus Project, under the Apache License v2.0 with LLVM
4// Exceptions. See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef PROTEUS_INIT_H
10#define PROTEUS_INIT_H
11
12namespace proteus {
13
14[[deprecated("it is a no-op and will be removed in a future version.")]]
15void init();
16[[deprecated("it is a no-op and will be removed in a future version.")]]
17void finalize();
18
19void enable();
20void disable();
21
22} // namespace proteus
23
24#endif
Definition MemoryCache.h:26
void init()
Definition Init.cpp:20
void disable()
Definition Init.cpp:30
void enable()
Definition Init.cpp:23
void finalize()
Definition Init.cpp:21