From: Fariborz Jahanian Date: Sun, 12 Apr 2009 17:43:53 +0000 (+0000) Subject: OS dependent code removed. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ef4b1757bf80e1bc38f2fa724da04eac52b5f071;p=clang OS dependent code removed. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68904 91177308-0d34-0410-b5e6-96231b3b80d8 --- 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 - @interface MyClass { } @@ -16,7 +14,6 @@ { @synchronized(self) { - NSLog(@"sync"); } } @@ -24,7 +21,6 @@ void foo(id a) { @synchronized(a) { - printf("Swimming? No."); return; } }