llvm-project/compiler-rt/lib/orc/extensible_rtti.cpp
Lang Hames e0b6c99288 Re-apply "[ORC-RT] Add unit test infrastructure, extensible_rtti..."
This reapplies 6d263b6f1c9 (which was reverted in 1c7c6f2b106) with a fix for a
CMake issue.
2021-05-11 10:28:33 -07:00

25 lines
815 B
C++

//===- extensible_rtti.cpp ------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//
// This file is a part of the ORC runtime support library.
//
// Note:
// This source file was adapted from lib/Support/ExtensibleRTTI.cpp, however
// the data structures are not shared and the code need not be kept in sync.
//
//===----------------------------------------------------------------------===//
#include "extensible_rtti.h"
namespace __orc_rt {
char RTTIRoot::ID = 0;
void RTTIRoot::anchor() {}
} // end namespace __orc_rt