Fix a FIXME about the format and add a test.
[oota-llvm.git] / lib / Transforms / ObjCARC / ObjCARCOpts.cpp
index 51797c76d30fba60a151541d88ac395eb3409553..cef049591ce2f608aaa6c44721da91beb7402dfa 100644 (file)
@@ -528,7 +528,7 @@ namespace {
 
 
     bool IsKnownSafe() const {
-      return RRI.KnownSafe;    
+      return RRI.KnownSafe;
     }
 
     void SetKnownSafe(const bool NewValue) {
@@ -1505,7 +1505,7 @@ void ObjCARCOpt::OptimizeIndividualCalls(Function &F) {
 
         // Create the declaration lazily.
         LLVMContext &C = Inst->getContext();
-        
+
         Constant *Decl = EP.get(ARCRuntimeEntryPoints::EPT_Release);
         CallInst *NewCall = CallInst::Create(Decl, Call->getArgOperand(0), "",
                                              Call);