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