File tree 1 file changed +3
-3
lines changed
compiler/rustc_llvm/llvm-wrapper
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 23
23
#include " llvm/Object/ObjectFile.h"
24
24
#include " llvm/Passes/PassBuilder.h"
25
25
#include " llvm/Passes/PassPlugin.h"
26
+ #include " llvm/Transforms/IPO/AlwaysInliner.h"
26
27
#include " llvm/Passes/StandardInstrumentations.h"
27
28
#include " llvm/Support/CBindingWrapping.h"
28
29
#include " llvm/Support/FileSystem.h"
29
30
#include " llvm/Support/VirtualFileSystem.h"
30
31
#include " llvm/Target/TargetMachine.h"
31
- #include " llvm/Transforms/IPO/AlwaysInliner.h"
32
32
#include " llvm/Transforms/IPO/FunctionImport.h"
33
33
#include " llvm/Transforms/IPO/Internalize.h"
34
34
#include " llvm/Transforms/IPO/LowerTypeTests.h"
@@ -429,10 +429,10 @@ extern "C" LLVMTargetMachineRef LLVMRustCreateTargetMachine(
429
429
TargetOptions Options = codegen::InitTargetOptionsFromCodeGenFlags (Trip);
430
430
431
431
Options.FloatABIType = FloatABI::Default;
432
- if (UseSoftFloat) {
432
+ if (UseSoftFloat) {
433
433
Options.FloatABIType = FloatABI::Soft;
434
434
}
435
- Options.DataSections = DataSections;
435
+ Options.DataSections = DataSections;
436
436
Options.FunctionSections = FunctionSections;
437
437
Options.UniqueSectionNames = UniqueSectionNames;
438
438
Options.MCOptions .AsmVerbose = AsmComments;
You can’t perform that action at this time.
0 commit comments