From 649b11ef8bcdcf17bf5021ebcb8c91827e620fc5 Mon Sep 17 00:00:00 2001 From: Nick Desaulniers Date: Mon, 10 Jan 2022 18:34:30 -0800 Subject: [PATCH] git-clang-format HEAD~ --- llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp b/llvm/lib/CodeGen/SelectionDAG/TargetLowering.cpp index 6af296d..e4bc861 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(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(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; } } -- 2.7.4