Skip to content

Commit

Permalink
Rollup merge of #117675 - zmodem:vectorize_h, r=durin42
Browse files Browse the repository at this point in the history
llvm-wrapper: Remove include of non-existant Vectorize.h

LLVM recently removed the header: llvm/llvm-project@2400c54

It only contained a declaration of `createLoadStoreVectorizerPass()`, which Rust doesn't reference.
  • Loading branch information
matthiaskrgr committed Nov 7, 2023
2 parents f6f6fd1 + 752a613 commit 518fe49
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion compiler/rustc_llvm/llvm-wrapper/LLVMWrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -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) || \
Expand Down

0 comments on commit 518fe49

Please sign in to comment.