aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordy Rose <jediknil@belkadan.com>2010-07-06 02:42:09 +0000
committerJordy Rose <jediknil@belkadan.com>2010-07-06 02:42:09 +0000
commitb829d72294b029ef1aff54052cae9890400071be (patch)
tree4fe68bf2f4234b0786cade6242c8dc251641f6d0
parent61fb55c87909bd749a367f7c12b302e39aa3e392 (diff)
Oops, tabs --> spaces in test.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@107634 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--test/Analysis/retain-release.m20
1 files changed, 10 insertions, 10 deletions
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