Skip to content
This repository was archived by the owner on Oct 3, 2024. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion llvm/include/llvm/Passes/CodeGenPassBuilder.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
#include "llvm/CodeGen/DwarfEHPrepare.h"
#include "llvm/CodeGen/ExpandMemCmp.h"
#include "llvm/CodeGen/ExpandReductions.h"
#include "llvm/CodeGen/FPBuiltinFnSelection.h"
#include "llvm/CodeGen/GCMetadata.h"
#include "llvm/CodeGen/GlobalMerge.h"
#include "llvm/CodeGen/IndirectBrExpand.h"
Expand Down Expand Up @@ -65,6 +64,7 @@
#include "llvm/Target/TargetMachine.h"
#include "llvm/Transforms/CFGuard.h"
#include "llvm/Transforms/Scalar/ConstantHoisting.h"
#include "llvm/Transforms/Scalar/FPBuiltinFnSelection.h"
#include "llvm/Transforms/Scalar/LoopPassManager.h"
#include "llvm/Transforms/Scalar/LoopStrengthReduce.h"
#include "llvm/Transforms/Scalar/LowerConstantIntrinsics.h"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===- FPBuiltinFnSelection.h - Pre-ISel intrinsic lowering pass ----------===//
//===- FPBuiltinFnSelection.h - fpbuiltin intrinsic lowering pass ---------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand All @@ -10,8 +10,8 @@
// llvm.fpbuiltin.* intrinsics.
//
//===----------------------------------------------------------------------===//
#ifndef LLVM_CODEGEN_FPBUILTINFNSELECTION_H
#define LLVM_CODEGEN_FPBUILTINFNSELECTION_H
#ifndef LLVM_TRANSFORMS_SCALAR_FPBUILTINFNSELECTION_H
#define LLVM_TRANSFORMS_SCALAR_FPBUILTINFNSELECTION_H

#include "llvm/IR/PassManager.h"

Expand All @@ -25,4 +25,4 @@ struct FPBuiltinFnSelectionPass : PassInfoMixin<FPBuiltinFnSelectionPass> {

} // end namespace llvm

#endif // LLVM_CODEGEN_FPBUILTINFNSELECTION_H
#endif // LLVM_TRANSFORMS_SCALAR_FPBUILTINFNSELECTION_H
1 change: 0 additions & 1 deletion llvm/lib/CodeGen/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ add_llvm_component_library(LLVMCodeGen
ExpandVectorPredication.cpp
FaultMaps.cpp
FEntryInserter.cpp
FPBuiltinFnSelection.cpp
FinalizeISel.cpp
FixupStatepointCallerSaved.cpp
FuncletLayout.cpp
Expand Down
1 change: 1 addition & 0 deletions llvm/lib/Transforms/Scalar/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ add_llvm_component_library(LLVMScalarOpts
EarlyCSE.cpp
FlattenCFGPass.cpp
Float2Int.cpp
FPBuiltinFnSelection.cpp
GuardWidening.cpp
GVN.cpp
GVNHoist.cpp
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//===- FPBuiltinFnSelection.cpp - Pre-ISel intrinsic lowering pass --------===//
//===- FPBuiltinFnSelection.cpp - fpbuiltin intrinsic lowering pass -------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
Expand All @@ -11,7 +11,7 @@
//
//===----------------------------------------------------------------------===//

#include "llvm/CodeGen/FPBuiltinFnSelection.h"
#include "llvm/Transforms/Scalar/FPBuiltinFnSelection.h"
#include "llvm/Analysis/TargetLibraryInfo.h"
#include "llvm/Analysis/TargetTransformInfo.h"
#include "llvm/CodeGen/Passes.h"
Expand Down