//===- llvm/IR/TypedPointerType.h - Typed Pointer Type --------------------===// // // 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 contains typed pointer type information. It is separated out into // a separate file to make it less likely to accidentally use this type. // //===----------------------------------------------------------------------===// #ifndef LLVM_IR_TYPEDPOINTERTYPE_H #define LLVM_IR_TYPEDPOINTERTYPE_H #include "llvm/IR/Type.h" namespace llvm { /// A few GPU targets, such as DXIL and SPIR-V, have typed pointers. This /// pointer type abstraction is used for tracking the types of these pointers. /// It is not legal to use this type, or derived types containing this type, in /// LLVM IR. class TypedPointerType : public Type { … }; } // namespace llvm #endif // LLVM_IR_TYPEDPOINTERTYPE_H