[llvm] 649b11e - git-clang-format HEAD~
Nick Desaulniers via llvm-commits
llvm-commits at lists.llvm.org
Mon Jan 10 18:34:38 PST 2022
Author: Nick Desaulniers
Date: 2022-01-10T18:34:30-08:00
New Revision: 649b11ef8bcdcf17bf5021ebcb8c91827e620fc5
URL: https://github.com/llvm/llvm-project/commit/649b11ef8bcdcf17bf5021ebcb8c91827e620fc5
DIFF: https://github.com/llvm/llvm-project/commit/649b11ef8bcdcf17bf5021ebcb8c91827e620fc5.diff
LOG: git-clang-format HEAD~
Added:
Modified:
llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
Removed:
################################################################################
diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
index 6af296d15dfd..e4bc861f29b6 100644
--- a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
+++ b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp
@@ -4629,14 +4629,14 @@ void TargetLowering::LowerAsmOperandForConstraint(SDValue Op,
if (ConstraintLetter != 'n') {
if (const auto *GA = dyn_cast<GlobalAddressSDNode>(Op)) {
Ops.push_back(DAG.getTargetGlobalAddress(GA->getGlobal(), SDLoc(Op),
- GA->getValueType(0),
- Offset + GA->getOffset()));
+ GA->getValueType(0),
+ Offset + GA->getOffset()));
return;
}
if (const auto *BA = dyn_cast<BlockAddressSDNode>(Op)) {
Ops.push_back(DAG.getTargetBlockAddress(
- BA->getBlockAddress(), BA->getValueType(0),
- Offset + BA->getOffset(), BA->getTargetFlags()));
+ BA->getBlockAddress(), BA->getValueType(0),
+ Offset + BA->getOffset(), BA->getTargetFlags()));
return;
}
}
More information about the llvm-commits
mailing list