Skip to content

Commit 8e64c00

Browse files
clang-format
1 parent 7f9deca commit 8e64c00

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

llvm/lib/Target/NVPTX/NVPTXISelDAGToDAG.cpp

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,9 @@ static cl::opt<bool>
3838
EnableRsqrtOpt("nvptx-rsqrt-approx-opt", cl::init(true), cl::Hidden,
3939
cl::desc("Enable reciprocal sqrt optimization"));
4040

41-
static cl::opt<bool>
42-
EnableMADWide("nvptx-mad-wide-opt", cl::init(false), cl::Hidden,
43-
cl::desc("Enable MAD wide optimization"));
44-
41+
static cl::opt<bool> EnableMADWide("nvptx-mad-wide-opt", cl::init(false),
42+
cl::Hidden,
43+
cl::desc("Enable MAD wide optimization"));
4544

4645
/// createNVPTXISelDag - This pass converts a legalized DAG into a
4746
/// NVPTX-specific DAG, ready for instruction scheduling.
@@ -89,9 +88,7 @@ bool NVPTXDAGToDAGISel::allowFMA() const {
8988

9089
bool NVPTXDAGToDAGISel::doRsqrtOpt() const { return EnableRsqrtOpt; }
9190

92-
bool NVPTXDAGToDAGISel::doMADWideOpt() const {
93-
return EnableMADWide;
94-
}
91+
bool NVPTXDAGToDAGISel::doMADWideOpt() const { return EnableMADWide; }
9592

9693
/// Select - Select instructions not customized! Used for
9794
/// expanded, promoted and normal instructions.

0 commit comments

Comments
 (0)