From: Jordy Rose Date: Tue, 6 Jul 2010 02:42:09 +0000 (+0000) Subject: Oops, tabs --> spaces in test. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b829d72294b029ef1aff54052cae9890400071be;p=clang Oops, tabs --> spaces in test. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107634 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/Analysis/retain-release.m b/test/Analysis/retain-release.m index c1d6b06f59..c9c7d27134 100644 --- a/test/Analysis/retain-release.m +++ b/test/Analysis/retain-release.m @@ -470,16 +470,16 @@ void f16(int x, CFTypeRef p) { // Test that an object is non-null after being CFRetained/CFReleased. void f17(int x, CFTypeRef p) { - if (x) { - CFRelease(p); - if (!p) - CFRelease(0); // no-warning - } - else { - CFRetain(p); - if (!p) - CFRetain(0); // no-warning - } + if (x) { + CFRelease(p); + if (!p) + CFRelease(0); // no-warning + } + else { + CFRetain(p); + if (!p) + CFRetain(0); // no-warning + } } // Test basic tracking of ivars associated with 'self'. For the retain/release