diff options
| author | Augie Fackler <augie@google.com> | 2022-04-28 13:53:52 -0400 |
|---|---|---|
| committer | Augie Fackler <augie@google.com> | 2022-04-28 13:53:52 -0400 |
| commit | e8ae06a31bcfa8b276664323fb825af5fce0a885 (patch) | |
| tree | 5dd17784415ec01e2d455a7c158b183cd78d4780 /compiler/rustc_llvm/llvm-wrapper | |
| parent | b2c2a32870e15af02eb89de434c36535439dbf5a (diff) | |
| download | rust-e8ae06a31bcfa8b276664323fb825af5fce0a885.tar.gz rust-e8ae06a31bcfa8b276664323fb825af5fce0a885.zip | |
RustWrapper: explicitly don't handle DXILPointerTyID
This new enum entry was introduced in https://reviews.llvm.org/D122268, and if I'm reading correctly there's no case where we'd ever encounter it in our uses of LLVM. To preserve the ability to compile this file with -Werror -Wswitch we add an explicit case for this entry.
Diffstat (limited to 'compiler/rustc_llvm/llvm-wrapper')
| -rw-r--r-- | compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp b/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp index 850b80e4280..6d79e662a42 100644 --- a/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp +++ b/compiler/rustc_llvm/llvm-wrapper/RustWrapper.cpp @@ -1217,6 +1217,11 @@ extern "C" LLVMTypeKind LLVMRustGetTypeKind(LLVMTypeRef Ty) { return LLVMBFloatTypeKind; case Type::X86_AMXTyID: return LLVMX86_AMXTypeKind; +#if LLVM_VERSION_GE(15, 0) + case Type::DXILPointerTyID: + report_fatal_error("Rust does not support DirectX typed pointers."); + break; +#endif } report_fatal_error("Unhandled TypeID."); } |
