From 6098cbbd2c6de04bba89ab4292349f63fc3c3384 Mon Sep 17 00:00:00 2001 From: Junmo Park Date: Fri, 11 Mar 2016 07:05:32 +0000 Subject: [PATCH] Minor code cleanups. NFC. llvm-svn: 263200 --- llvm/lib/CodeGen/CodeGenPrepare.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/llvm/lib/CodeGen/CodeGenPrepare.cpp b/llvm/lib/CodeGen/CodeGenPrepare.cpp index 0df2971..4932173 100644 --- a/llvm/lib/CodeGen/CodeGenPrepare.cpp +++ b/llvm/lib/CodeGen/CodeGenPrepare.cpp @@ -1771,7 +1771,7 @@ bool CodeGenPrepare::optimizeCallInst(CallInst *CI, bool& ModifiedDT) { unsigned AS = Arg->getType()->getPointerAddressSpace(); return optimizeMemoryInst(CI, Arg, Arg->getType(), AS); } - + IntrinsicInst *II = dyn_cast(CI); if (II) { switch (II->getIntrinsicID()) { @@ -3478,7 +3478,7 @@ static bool FindAllMemoryUses( // the cold path. See optimizeCallInst if (!OptSize && CI->hasFnAttr(Attribute::Cold)) continue; - + InlineAsm *IA = dyn_cast(CI->getCalledValue()); if (!IA) return true; @@ -3573,7 +3573,7 @@ isProfitableToFoldIntoAddressingMode(Instruction *I, ExtAddrMode &AMBefore, // If all uses of this instruction can have the address mode sunk into them, // we can remove the addressing mode and effectively trade one live register // for another (at worst.) In this context, folding an addressing mode into - // the use is just a particularly nice way of sinking it. + // the use is just a particularly nice way of sinking it. SmallVector, 16> MemoryUses; SmallPtrSet ConsideredInsts; if (FindAllMemoryUses(I, MemoryUses, ConsideredInsts, TM)) -- 2.7.4