File tree Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Expand file tree Collapse file tree 5 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 29
29
#include " llvm/CodeGen/DwarfEHPrepare.h"
30
30
#include " llvm/CodeGen/ExpandMemCmp.h"
31
31
#include " llvm/CodeGen/ExpandReductions.h"
32
- #include " llvm/CodeGen/FPBuiltinFnSelection.h"
33
32
#include " llvm/CodeGen/GCMetadata.h"
34
33
#include " llvm/CodeGen/GlobalMerge.h"
35
34
#include " llvm/CodeGen/IndirectBrExpand.h"
65
64
#include " llvm/Target/TargetMachine.h"
66
65
#include " llvm/Transforms/CFGuard.h"
67
66
#include " llvm/Transforms/Scalar/ConstantHoisting.h"
67
+ #include " llvm/Transforms/Scalar/FPBuiltinFnSelection.h"
68
68
#include " llvm/Transforms/Scalar/LoopPassManager.h"
69
69
#include " llvm/Transforms/Scalar/LoopStrengthReduce.h"
70
70
#include " llvm/Transforms/Scalar/LowerConstantIntrinsics.h"
Original file line number Diff line number Diff line change 1
- // ===- FPBuiltinFnSelection.h - Pre-ISel intrinsic lowering pass - ---------===//
1
+ // ===- FPBuiltinFnSelection.h - fpbuiltin intrinsic lowering pass ---------===//
2
2
//
3
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
4
// See https://llvm.org/LICENSE.txt for license information.
10
10
// llvm.fpbuiltin.* intrinsics.
11
11
//
12
12
// ===----------------------------------------------------------------------===//
13
- #ifndef LLVM_CODEGEN_FPBUILTINFNSELECTION_H
14
- #define LLVM_CODEGEN_FPBUILTINFNSELECTION_H
13
+ #ifndef LLVM_TRANSFORMS_SCALAR_FPBUILTINFNSELECTION_H
14
+ #define LLVM_TRANSFORMS_SCALAR_FPBUILTINFNSELECTION_H
15
15
16
16
#include " llvm/IR/PassManager.h"
17
17
@@ -25,4 +25,4 @@ struct FPBuiltinFnSelectionPass : PassInfoMixin<FPBuiltinFnSelectionPass> {
25
25
26
26
} // end namespace llvm
27
27
28
- #endif // LLVM_CODEGEN_FPBUILTINFNSELECTION_H
28
+ #endif // LLVM_TRANSFORMS_SCALAR_FPBUILTINFNSELECTION_H
Original file line number Diff line number Diff line change @@ -63,7 +63,6 @@ add_llvm_component_library(LLVMCodeGen
63
63
ExpandVectorPredication.cpp
64
64
FaultMaps.cpp
65
65
FEntryInserter.cpp
66
- FPBuiltinFnSelection.cpp
67
66
FinalizeISel.cpp
68
67
FixupStatepointCallerSaved.cpp
69
68
FuncletLayout.cpp
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ add_llvm_component_library(LLVMScalarOpts
14
14
EarlyCSE.cpp
15
15
FlattenCFGPass.cpp
16
16
Float2Int.cpp
17
+ FPBuiltinFnSelection.cpp
17
18
GuardWidening.cpp
18
19
GVN.cpp
19
20
GVNHoist.cpp
Original file line number Diff line number Diff line change 1
- // ===- FPBuiltinFnSelection.cpp - Pre-ISel intrinsic lowering pass - -------===//
1
+ // ===- FPBuiltinFnSelection.cpp - fpbuiltin intrinsic lowering pass -------===//
2
2
//
3
3
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4
4
// See https://llvm.org/LICENSE.txt for license information.
11
11
//
12
12
// ===----------------------------------------------------------------------===//
13
13
14
- #include " llvm/CodeGen /FPBuiltinFnSelection.h"
14
+ #include " llvm/Transforms/Scalar /FPBuiltinFnSelection.h"
15
15
#include " llvm/Analysis/TargetLibraryInfo.h"
16
16
#include " llvm/Analysis/TargetTransformInfo.h"
17
17
#include " llvm/CodeGen/Passes.h"
You can’t perform that action at this time.
0 commit comments