From ef4b1757bf80e1bc38f2fa724da04eac52b5f071 Mon Sep 17 00:00:00 2001
From: Fariborz Jahanian <fjahanian@apple.com>
Date: Sun, 12 Apr 2009 17:43:53 +0000
Subject: [PATCH] OS dependent code removed.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68904 91177308-0d34-0410-b5e6-96231b3b80d8
---
 test/CodeGenObjC/synchronized.m | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/test/CodeGenObjC/synchronized.m b/test/CodeGenObjC/synchronized.m
index 287f89e6c4..b398ca6c0a 100644
--- a/test/CodeGenObjC/synchronized.m
+++ b/test/CodeGenObjC/synchronized.m
@@ -2,8 +2,6 @@
 // RUN: grep 'ret i32' %t | count 1 &&
 // RUN: grep 'ret i32 1' %t | count 1
 
-#include <stdio.h>
-
 @interface MyClass
 {
 }
@@ -16,7 +14,6 @@
 {
 	@synchronized(self)
 	{
-		NSLog(@"sync");
 	}
 }
 
@@ -24,7 +21,6 @@
 
 void foo(id a) {
   @synchronized(a) {
-    printf("Swimming? No.");
     return;
   }
 }
-- 
2.40.0