Skip to content

Commit b2d16d0

Browse files
committed
Fix code format
1 parent 330f25b commit b2d16d0

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

lld/ELF/LTO.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -459,7 +459,8 @@ GccIRCompiler::~GccIRCompiler() {
459459

460460
void GccIRCompiler::loadPlugin() {
461461
std::string Error;
462-
plugin = llvm::sys::DynamicLibrary::getPermanentLibrary(ctx.arg.plugin.data(), &Error);
462+
plugin = llvm::sys::DynamicLibrary::getPermanentLibrary(ctx.arg.plugin.data(),
463+
&Error);
463464
if (!plugin.isValid()) {
464465
error(Error);
465466
return;

lld/ELF/LTO.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
#include "lld/config.h"
2525
#include "llvm/ADT/DenseSet.h"
2626
#include "llvm/ADT/SmallString.h"
27-
#include "llvm/Support/raw_ostream.h"
2827
#include "llvm/Support/DynamicLibrary.h"
28+
#include "llvm/Support/raw_ostream.h"
2929
#include <memory>
3030
#include <vector>
3131

0 commit comments

Comments
 (0)