diff options
| author | Matthew Maurer <mmaurer@google.com> | 2023-02-07 06:48:54 -0800 | 
|---|---|---|
| committer | Matthew Maurer <mmaurer@google.com> | 2023-02-07 06:51:58 -0800 | 
| commit | 147c51e17dfc6b22deb349297fc7d2bdad19cd4f (patch) | |
| tree | 4e127c47f3da4fa0a621abd69ae31daf1b28028c /compiler/rustc_llvm/llvm-wrapper/LLVMWrapper.h | |
| parent | e4dd9edb76a34ecbca539967f9662b8c0cc9c7fb (diff) | |
| download | rust-147c51e17dfc6b22deb349297fc7d2bdad19cd4f.tar.gz rust-147c51e17dfc6b22deb349297fc7d2bdad19cd4f.zip  | |
llvm-16: Use Triple.h from new header location.
LLVM 16 has moved Triple.h from ADT and into TargetParser
Diffstat (limited to 'compiler/rustc_llvm/llvm-wrapper/LLVMWrapper.h')
| -rw-r--r-- | compiler/rustc_llvm/llvm-wrapper/LLVMWrapper.h | 7 | 
1 files changed, 6 insertions, 1 deletions
diff --git a/compiler/rustc_llvm/llvm-wrapper/LLVMWrapper.h b/compiler/rustc_llvm/llvm-wrapper/LLVMWrapper.h index 727cfc4416e..9146a3739b2 100644 --- a/compiler/rustc_llvm/llvm-wrapper/LLVMWrapper.h +++ b/compiler/rustc_llvm/llvm-wrapper/LLVMWrapper.h @@ -4,7 +4,6 @@ #include "llvm/ADT/ArrayRef.h" #include "llvm/ADT/DenseSet.h" #include "llvm/ADT/SmallVector.h" -#include "llvm/ADT/Triple.h" #include "llvm/Analysis/Lint.h" #include "llvm/Analysis/Passes.h" #include "llvm/IR/IRBuilder.h" @@ -44,6 +43,12 @@ #include "llvm/IR/IRPrintingPasses.h" #include "llvm/Linker/Linker.h" +#if LLVM_VERSION_GE(16, 0) +#include "llvm/TargetParser/Triple.h" +#else +#include "llvm/ADT/Triple.h" +#endif + extern "C" void LLVMRustSetLastError(const char *); enum class LLVMRustResult { Success, Failure };  | 
