1344a3780SDimitry Andric //===- extensible_rtti.cpp ------------------------------------------------===// 2344a3780SDimitry Andric // 3344a3780SDimitry Andric // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4344a3780SDimitry Andric // See https://llvm.org/LICENSE.txt for license information. 5344a3780SDimitry Andric // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6344a3780SDimitry Andric // 7344a3780SDimitry Andric //===----------------------------------------------------------------------===// 8344a3780SDimitry Andric // 9344a3780SDimitry Andric // This file is a part of the ORC runtime support library. 10344a3780SDimitry Andric // 11344a3780SDimitry Andric // Note: 12344a3780SDimitry Andric // This source file was adapted from lib/Support/ExtensibleRTTI.cpp, however 13344a3780SDimitry Andric // the data structures are not shared and the code need not be kept in sync. 14344a3780SDimitry Andric // 15344a3780SDimitry Andric //===----------------------------------------------------------------------===// 16344a3780SDimitry Andric 17344a3780SDimitry Andric #include "extensible_rtti.h" 18344a3780SDimitry Andric 19344a3780SDimitry Andric namespace __orc_rt { 20344a3780SDimitry Andric 21344a3780SDimitry Andric char RTTIRoot::ID = 0; anchor()22344a3780SDimitry Andricvoid RTTIRoot::anchor() {} 23344a3780SDimitry Andric 24344a3780SDimitry Andric } // end namespace __orc_rt 25