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