25 lines · cpp
1//===- rtti.cpp -----------------------------------------------------------===//2//3// 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-exception6//7//===----------------------------------------------------------------------===//8//9// This file is a part of the ORC runtime support library.10//11// Note:12// This source file was adapted from lib/Support/ExtensibleRTTI.cpp, however13// the data structures are not shared and the code need not be kept in sync.14//15//===----------------------------------------------------------------------===//16 17#include "rtti.h"18 19namespace orc_rt {20 21char RTTIRoot::ID = 0;22void RTTIRoot::anchor() {}23 24} // namespace orc_rt25