From: Victor Hernandez Date: Thu, 10 Sep 2009 20:18:57 +0000 (+0000) Subject: Fit code within 80 columns X-Git-Url: http://plrg.eecs.uci.edu/git/?p=oota-llvm.git;a=commitdiff_plain;h=399e45b459c2904b9bd1927306670585ecec3378 Fit code within 80 columns git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81459 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/MallocHelper.cpp b/lib/Analysis/MallocHelper.cpp index 567268c6797..60930d5169b 100644 --- a/lib/Analysis/MallocHelper.cpp +++ b/lib/Analysis/MallocHelper.cpp @@ -69,12 +69,14 @@ static bool isBitCastOfMallocCall(const BitCastInst* BCI) { /// instruction is a bitcast of the result of a malloc call. CallInst* llvm::extractMallocCallFromBitCast(Value* I) { BitCastInst *BCI = dyn_cast(I); - return (isBitCastOfMallocCall(BCI)) ? cast(BCI->getOperand(0)) : NULL; + return (isBitCastOfMallocCall(BCI)) ? cast(BCI->getOperand(0)) + : NULL; } const CallInst* llvm::extractMallocCallFromBitCast(const Value* I) { const BitCastInst *BCI = dyn_cast(I); - return (isBitCastOfMallocCall(BCI)) ? cast(BCI->getOperand(0)) : NULL; + return (isBitCastOfMallocCall(BCI)) ? cast(BCI->getOperand(0)) + : NULL; } static bool isArrayMallocHelper(const CallInst *CI) {