Path: blob/main/contrib/llvm-project/compiler-rt/lib/orc/rtti.cpp
213765 views
//===- rtti.cpp -----------------------------------------------------------===//1//2// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.3// See https://llvm.org/LICENSE.txt for license information.4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception5//6//===----------------------------------------------------------------------===//7//8// This file is a part of the ORC runtime support library.9//10// Note:11// This source file was adapted from lib/Support/ExtensibleRTTI.cpp, however12// the data structures are not shared and the code need not be kept in sync.13//14//===----------------------------------------------------------------------===//1516#include "rtti.h"1718namespace orc_rt {1920char RTTIRoot::ID = 0;21void RTTIRoot::anchor() {}2223} // namespace orc_rt242526