1*e0b6c992SLang Hames //===- extensible_rtti.cpp ------------------------------------------------===// 2*e0b6c992SLang Hames // 3*e0b6c992SLang Hames // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4*e0b6c992SLang Hames // See https://llvm.org/LICENSE.txt for license information. 5*e0b6c992SLang Hames // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6*e0b6c992SLang Hames // 7*e0b6c992SLang Hames //===----------------------------------------------------------------------===// 8*e0b6c992SLang Hames // 9*e0b6c992SLang Hames // This file is a part of the ORC runtime support library. 10*e0b6c992SLang Hames // 11*e0b6c992SLang Hames // Note: 12*e0b6c992SLang Hames // This source file was adapted from lib/Support/ExtensibleRTTI.cpp, however 13*e0b6c992SLang Hames // the data structures are not shared and the code need not be kept in sync. 14*e0b6c992SLang Hames // 15*e0b6c992SLang Hames //===----------------------------------------------------------------------===// 16*e0b6c992SLang Hames 17*e0b6c992SLang Hames #include "extensible_rtti.h" 18*e0b6c992SLang Hames 19*e0b6c992SLang Hames namespace __orc_rt { 20*e0b6c992SLang Hames 21*e0b6c992SLang Hames char RTTIRoot::ID = 0; anchor()22*e0b6c992SLang Hamesvoid RTTIRoot::anchor() {} 23*e0b6c992SLang Hames 24*e0b6c992SLang Hames } // end namespace __orc_rt 25