diff options
| author | Gerolf Hoflehner <ghoflehner@apple.com> | 2016-04-27 17:27:16 +0000 |
|---|---|---|
| committer | Gerolf Hoflehner <ghoflehner@apple.com> | 2016-04-27 17:27:16 +0000 |
| commit | 50426191d7b93446e1db490b768e2bb8e56b4f0f (patch) | |
| tree | 87f6fe36a81e7ec451fb6b384933f2af088a245b /llvm/lib/CodeGen | |
| parent | 3a947631019015b5d149a5afbba6914d56ca05e7 (diff) | |
| download | bcm5719-llvm-50426191d7b93446e1db490b768e2bb8e56b4f0f.tar.gz bcm5719-llvm-50426191d7b93446e1db490b768e2bb8e56b4f0f.zip | |
[DAGCombiner] Follow coding convention for function name (NFC)
llvm-svn: 267745
Diffstat (limited to 'llvm/lib/CodeGen')
| -rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 7dc1b255713..ae4882ac43e 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -7724,7 +7724,7 @@ SDValue DAGCombiner::visitFADDForFMACombine(SDNode *N) { const SelectionDAGTargetInfo *STI = DAG.getSubtarget().getSelectionDAGInfo(); ; - if (AllowFusion && STI && STI->GenerateFMAsInMachineCombiner(OptLevel)) + if (AllowFusion && STI && STI->generateFMAsInMachineCombiner(OptLevel)) return SDValue(); // Always prefer FMAD to FMA for precision. @@ -7911,7 +7911,7 @@ SDValue DAGCombiner::visitFSUBForFMACombine(SDNode *N) { return SDValue(); const SelectionDAGTargetInfo *STI = DAG.getSubtarget().getSelectionDAGInfo(); - if (AllowFusion && STI && STI->GenerateFMAsInMachineCombiner(OptLevel)) + if (AllowFusion && STI && STI->generateFMAsInMachineCombiner(OptLevel)) return SDValue(); // Always prefer FMAD to FMA for precision. |

