Path: blob/main/contrib/llvm-project/compiler-rt/lib/orc/extensible_rtti.cpp
39566 views
//===- extensible_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 "extensible_rtti.h"1718namespace __orc_rt {1920char RTTIRoot::ID = 0;21void RTTIRoot::anchor() {}2223} // end namespace __orc_rt242526