Skip to content

Commit 442219e

Browse files
committed
[Don't merge] Show tidy output
1 parent c163d5c commit 442219e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

compiler/rustc_llvm/llvm-wrapper/PassWrapper.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
#include "llvm/Object/ObjectFile.h"
2424
#include "llvm/Passes/PassBuilder.h"
2525
#include "llvm/Passes/PassPlugin.h"
26+
#include "llvm/Transforms/IPO/AlwaysInliner.h"
2627
#include "llvm/Passes/StandardInstrumentations.h"
2728
#include "llvm/Support/CBindingWrapping.h"
2829
#include "llvm/Support/FileSystem.h"
2930
#include "llvm/Support/VirtualFileSystem.h"
3031
#include "llvm/Target/TargetMachine.h"
31-
#include "llvm/Transforms/IPO/AlwaysInliner.h"
3232
#include "llvm/Transforms/IPO/FunctionImport.h"
3333
#include "llvm/Transforms/IPO/Internalize.h"
3434
#include "llvm/Transforms/IPO/LowerTypeTests.h"
@@ -429,10 +429,10 @@ extern "C" LLVMTargetMachineRef LLVMRustCreateTargetMachine(
429429
TargetOptions Options = codegen::InitTargetOptionsFromCodeGenFlags(Trip);
430430

431431
Options.FloatABIType = FloatABI::Default;
432-
if (UseSoftFloat) {
432+
if (UseSoftFloat) {
433433
Options.FloatABIType = FloatABI::Soft;
434434
}
435-
Options.DataSections = DataSections;
435+
Options.DataSections = DataSections;
436436
Options.FunctionSections = FunctionSections;
437437
Options.UniqueSectionNames = UniqueSectionNames;
438438
Options.MCOptions.AsmVerbose = AsmComments;

0 commit comments

Comments
 (0)