about summary refs log tree commit diff
path: root/compiler/rustc_llvm/llvm-wrapper/Linker.cpp
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2024-11-10 09:29:44 +0000
committerGitHub <noreply@github.com>2024-11-10 09:29:44 +0000
commita839fbf0a11bcfc2d594daeab3262f540d4b6178 (patch)
treea0cb06654acfe3d0136f7e59c87b12f591903512 /compiler/rustc_llvm/llvm-wrapper/Linker.cpp
parent5ff90d069a2d9c1391c811278b9c50550e6861dc (diff)
parenta01f37c7f49b4bcdd4565bd642f68b289a25d832 (diff)
downloadrust-a839fbf0a11bcfc2d594daeab3262f540d4b6178.tar.gz
rust-a839fbf0a11bcfc2d594daeab3262f540d4b6178.zip
Merge pull request #4021 from RalfJung/rustup
Rustup
Diffstat (limited to 'compiler/rustc_llvm/llvm-wrapper/Linker.cpp')
-rw-r--r--compiler/rustc_llvm/llvm-wrapper/Linker.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/compiler/rustc_llvm/llvm-wrapper/Linker.cpp b/compiler/rustc_llvm/llvm-wrapper/Linker.cpp
index f43128ed550..fdf54e2d9b4 100644
--- a/compiler/rustc_llvm/llvm-wrapper/Linker.cpp
+++ b/compiler/rustc_llvm/llvm-wrapper/Linker.cpp
@@ -1,8 +1,10 @@
-#include "llvm/Linker/Linker.h"
-#include "SuppressLLVMWarnings.h"
-
 #include "LLVMWrapper.h"
 
+#include "llvm/Bitcode/BitcodeReader.h"
+#include "llvm/IR/Module.h"
+#include "llvm/Linker/Linker.h"
+#include "llvm/Support/MemoryBuffer.h"
+
 using namespace llvm;
 
 struct RustLinker {