about summary refs log tree commit diff
path: root/compiler/rustc_llvm/llvm-wrapper
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2023-11-07 19:29:57 +0100
committerGitHub <noreply@github.com>2023-11-07 19:29:57 +0100
commit518fe492f11f2cac80464841f7b626ed1ba17802 (patch)
treef3a4b553e2b69ee8401bfb1bed98bb7880307c97 /compiler/rustc_llvm/llvm-wrapper
parentf6f6fd1d1aa66b3856c0fd21da6455b2f2c5c999 (diff)
parent752a6132e5fd7a042430afd1c4a2c0dbfa5da59b (diff)
downloadrust-518fe492f11f2cac80464841f7b626ed1ba17802.tar.gz
rust-518fe492f11f2cac80464841f7b626ed1ba17802.zip
Rollup merge of #117675 - zmodem:vectorize_h, r=durin42
llvm-wrapper: Remove include of non-existant Vectorize.h

LLVM recently removed the header: https://github.com/llvm/llvm-project/commit/2400c54c37d5afdfec016b9a71f161ac10a49b31

It only contained a declaration of `createLoadStoreVectorizerPass()`, which Rust doesn't reference.
Diffstat (limited to 'compiler/rustc_llvm/llvm-wrapper')
-rw-r--r--compiler/rustc_llvm/llvm-wrapper/LLVMWrapper.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_llvm/llvm-wrapper/LLVMWrapper.h b/compiler/rustc_llvm/llvm-wrapper/LLVMWrapper.h
index 3f2bf2c9b44..142384e6d0c 100644
--- a/compiler/rustc_llvm/llvm-wrapper/LLVMWrapper.h
+++ b/compiler/rustc_llvm/llvm-wrapper/LLVMWrapper.h
@@ -25,7 +25,6 @@
 #include "llvm/Transforms/IPO.h"
 #include "llvm/Transforms/Instrumentation.h"
 #include "llvm/Transforms/Scalar.h"
-#include "llvm/Transforms/Vectorize.h"
 
 #define LLVM_VERSION_GE(major, minor)                                          \
   (LLVM_VERSION_MAJOR > (major) ||                                             \