File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
compiler/rustc_llvm/llvm-wrapper Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 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;
You can’t perform that action at this time.
0 commit comments