2019-03-05 21:45:17 +01:00
|
|
|
//===-libremarks.cpp - LLVM Remarks Shared Library ------------------------===//
|
2018-11-05 12:57:44 +01:00
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2018-11-05 12:57:44 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2019-03-05 21:45:17 +01:00
|
|
|
// Provide a library to work with remark diagnostics.
|
2018-11-05 12:57:44 +01:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2019-03-05 21:45:17 +01:00
|
|
|
#include "llvm-c/Remarks.h"
|
2018-11-05 12:57:44 +01:00
|
|
|
|
2019-03-05 21:45:17 +01:00
|
|
|
extern uint32_t LLVMRemarkVersion(void) {
|
|
|
|
return REMARKS_API_VERSION;
|
2018-11-05 12:57:44 +01:00
|
|
|
}
|