blob: 699d33a8e62764d01d3f72b7e3c552e522472105 [file] [log] [blame]
Francis Visoiu Mistrih2ae1be72018-11-05 11:57:44 +00001//===-liboptremarks.cpp - LLVM Opt-Remarks Shared Library -----------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Francis Visoiu Mistrih2ae1be72018-11-05 11:57:44 +00006//
7//===----------------------------------------------------------------------===//
8//
9// Provide a library to work with optimization remarks.
10//
11//===----------------------------------------------------------------------===//
12
13#include "llvm-c/OptRemarks.h"
14
15extern uint32_t LLVMOptRemarkVersion(void) {
16 return OPT_REMARKS_API_VERSION;
17}