We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 330f25b commit b2d16d0Copy full SHA for b2d16d0
lld/ELF/LTO.cpp
@@ -459,7 +459,8 @@ GccIRCompiler::~GccIRCompiler() {
459
460
void GccIRCompiler::loadPlugin() {
461
std::string Error;
462
- plugin = llvm::sys::DynamicLibrary::getPermanentLibrary(ctx.arg.plugin.data(), &Error);
+ plugin = llvm::sys::DynamicLibrary::getPermanentLibrary(ctx.arg.plugin.data(),
463
+ &Error);
464
if (!plugin.isValid()) {
465
error(Error);
466
return;
lld/ELF/LTO.h
@@ -24,8 +24,8 @@
24
#include "lld/config.h"
25
#include "llvm/ADT/DenseSet.h"
26
#include "llvm/ADT/SmallString.h"
27
-#include "llvm/Support/raw_ostream.h"
28
#include "llvm/Support/DynamicLibrary.h"
+#include "llvm/Support/raw_ostream.h"
29
#include <memory>
30
#include <vector>
31
0 commit comments