blob: 3f65217cbcc28ed6ba9a84243692c00a45203336 [file] [log] [blame]
Francis Visoiu Mistrih1c4bab32019-03-05 20:45:17 +00001//===-libremarks.cpp - LLVM Remarks Shared Library ------------------------===//
Francis Visoiu Mistrih2ae1be72018-11-05 11:57:44 +00002//
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//
Francis Visoiu Mistrih1c4bab32019-03-05 20:45:17 +00009// Provide a library to work with remark diagnostics.
Francis Visoiu Mistrih2ae1be72018-11-05 11:57:44 +000010//
11//===----------------------------------------------------------------------===//
12
Francis Visoiu Mistrih1c4bab32019-03-05 20:45:17 +000013#include "llvm-c/Remarks.h"
Francis Visoiu Mistrih2ae1be72018-11-05 11:57:44 +000014
Francis Visoiu Mistrih1c4bab32019-03-05 20:45:17 +000015extern uint32_t LLVMRemarkVersion(void) {
16 return REMARKS_API_VERSION;
Francis Visoiu Mistrih2ae1be72018-11-05 11:57:44 +000017}