[libc] Switch to using the generic `<gpuintrin.h>` implementations (#121810)
[llvm-project.git] / compiler-rt / lib / orc / extensible_rtti.cpp
blobfce7d044a80161ece8e9d09abbd0b6c112dea7a1
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.
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.
15 //===----------------------------------------------------------------------===//
17 #include "extensible_rtti.h"
19 namespace orc_rt {
21 char RTTIRoot::ID = 0;
22 void RTTIRoot::anchor() {}
24 } // namespace orc_rt