From: Tim Northover Date: Mon, 25 Nov 2013 17:04:35 +0000 (+0000) Subject: Fix indentation typo X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=bb0cd33b842c8d7964741d9ca1247d1ce6bd957e;p=oota-llvm.git Fix indentation typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@195660 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/ARM/ARMAsmPrinter.cpp b/lib/Target/ARM/ARMAsmPrinter.cpp index 122aafd5bf1..6530a6fac94 100644 --- a/lib/Target/ARM/ARMAsmPrinter.cpp +++ b/lib/Target/ARM/ARMAsmPrinter.cpp @@ -817,7 +817,7 @@ EmitMachineConstantPoolValue(MachineConstantPoolValue *MCPV) { // On Darwin, const-pool entries may get the "FOO$non_lazy_ptr" mangling, so // flag the global as MO_NONLAZY. unsigned char TF = Subtarget->isTargetDarwin() ? ARMII::MO_NONLAZY : 0; - MCSym = GetARMGVSymbol(GV, TF); + MCSym = GetARMGVSymbol(GV, TF); } else if (ACPV->isMachineBasicBlock()) { const MachineBasicBlock *MBB = cast(ACPV)->getMBB(); MCSym = MBB->getSymbol();