Fit code within 80 columns
authorVictor Hernandez <vhernandez@apple.com>
Thu, 10 Sep 2009 20:18:57 +0000 (20:18 +0000)
committerVictor Hernandez <vhernandez@apple.com>
Thu, 10 Sep 2009 20:18:57 +0000 (20:18 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81459 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Analysis/MallocHelper.cpp

index 567268c6797cba36b5053259dd4f18293a0e77db..60930d5169b69b373e7781e748dfa39932f1200c 100644 (file)
@@ -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<BitCastInst>(I);
 /// instruction is a bitcast of the result of a malloc call.
 CallInst* llvm::extractMallocCallFromBitCast(Value* I) {
   BitCastInst *BCI = dyn_cast<BitCastInst>(I);
-  return (isBitCastOfMallocCall(BCI)) ? cast<CallInst>(BCI->getOperand(0)) : NULL;
+  return (isBitCastOfMallocCall(BCI)) ? cast<CallInst>(BCI->getOperand(0))
+                                      : NULL;
 }
 
 const CallInst* llvm::extractMallocCallFromBitCast(const Value* I) {
   const BitCastInst *BCI = dyn_cast<BitCastInst>(I);
 }
 
 const CallInst* llvm::extractMallocCallFromBitCast(const Value* I) {
   const BitCastInst *BCI = dyn_cast<BitCastInst>(I);
-  return (isBitCastOfMallocCall(BCI)) ? cast<CallInst>(BCI->getOperand(0)) : NULL;
+  return (isBitCastOfMallocCall(BCI)) ? cast<CallInst>(BCI->getOperand(0))
+                                      : NULL;
 }
 
 static bool isArrayMallocHelper(const CallInst *CI) {
 }
 
 static bool isArrayMallocHelper(const CallInst *CI) {