summaryrefslogtreecommitdiff
path: root/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
diff options
context:
space:
mode:
authorMichael Gottesman <mgottesman@apple.com>2013-04-18 04:34:11 +0000
committerMichael Gottesman <mgottesman@apple.com>2013-04-18 04:34:11 +0000
commit8a709208ede8eb387a2911c5ba11e5acf8cc69ae (patch)
tree6201ab976abe75c3f4f94e183524d37f32ff2e58 /lib/Transforms/ObjCARC/ObjCARCOpts.cpp
parentfd4ce16b7a39dab22e8cfc9a8a43d78502cc6598 (diff)
downloadllvm-8a709208ede8eb387a2911c5ba11e5acf8cc69ae.tar.gz
llvm-8a709208ede8eb387a2911c5ba11e5acf8cc69ae.tar.bz2
llvm-8a709208ede8eb387a2911c5ba11e5acf8cc69ae.tar.xz
Removed trailing whitespace.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@179746 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/ObjCARC/ObjCARCOpts.cpp')
-rw-r--r--lib/Transforms/ObjCARC/ObjCARCOpts.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Transforms/ObjCARC/ObjCARCOpts.cpp b/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
index b37b9efd28..e51ba6817c 100644
--- a/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
+++ b/lib/Transforms/ObjCARC/ObjCARCOpts.cpp
@@ -811,7 +811,7 @@ static void GenerateARCBBEntranceAnnotation(const char *Name, BasicBlock *BB,
if(!ARCAnnotationTargetIdentifier.empty() &&
!Ptr->getName().equals(ARCAnnotationTargetIdentifier))
return;
-
+
Module *M = BB->getParent()->getParent();
LLVMContext &C = M->getContext();
Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
@@ -854,7 +854,7 @@ static void GenerateARCBBTerminatorAnnotation(const char *Name, BasicBlock *BB,
if(!ARCAnnotationTargetIdentifier.empty() &&
!Ptr->getName().equals(ARCAnnotationTargetIdentifier))
return;
-
+
Module *M = BB->getParent()->getParent();
LLVMContext &C = M->getContext();
Type *I8X = PointerType::getUnqual(Type::getInt8Ty(C));
@@ -901,7 +901,7 @@ static void GenerateARCAnnotation(unsigned InstMDId,
if(!ARCAnnotationTargetIdentifier.empty() &&
!Ptr->getName().equals(ARCAnnotationTargetIdentifier))
return;
-
+
// First generate the source annotation on our pointer. This will return an
// MDString* if Ptr actually comes from an instruction implying we can put
// in a source annotation. If AppendMDNodeToSourcePtr returns 0 (i.e. NULL),