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